[dpdk-dev] [PATCH v2] cfgfile: fix unitialised buffer

2015-06-29 Thread Daniel Mrzyglod
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: D

[dpdk-dev] [PATCH v2] cfgfile: fix unitialised buffer

2015-06-29 Thread Bruce Richardson
On Mon, Jun 29, 2015 at 04:20:25PM +0200, Daniel Mrzyglod wrote: > 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 rando