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

2015-07-01 Thread Thomas Monjalon
2015-06-29 19:47, Dumitrescu, Cristian: > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of 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 > > the

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

2015-06-29 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Daniel Mrzyglod > Sent: Monday, June 29, 2015 4:06 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v3] cfgfile: fix unitialised buffer > > Nature of the problem was not initialis

[dpdk-dev] [PATCH v3] 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. Changes in v3: -