cfgfile: fix unitialised buffer

Nature of the problem was not initialised buffer[256], there were probability
that operation system will provide previously used memory and on special condition
there were probability that string operations will work on random data that
could provide unexpected program behaviour.

Signed-off-by: Daniel Mrzyglod <danielx.t.mrzyglod@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
This commit is contained in:
Daniel Mrzyglod 2015-06-29 17:06:03 +02:00 committed by Thomas Monjalon
parent c928adc4e7
commit 8646ea0116

View File

@ -92,7 +92,7 @@ rte_cfgfile_load(const char *filename, int flags)
int allocated_entries = 0;
int curr_section = -1;
int curr_entry = -1;
char buffer[256];
char buffer[256] = {0};
int lineno = 0;
struct rte_cfgfile *cfg = NULL;