Re: [dpdk-dev] [PATCH] eal: fix memory leak when saving arguments

2021-09-16 Thread David Marchand
On Wed, Sep 1, 2021 at 11:59 AM Bruce Richardson wrote: > > On Wed, Sep 01, 2021 at 09:38:47AM +, Conor Walsh wrote: > > This patch fixes a memleak which was reported in Bugzilla within the > > eal_save_args function. This was caused by the function mistakenly > > adding -- to the eal args ins

Re: [dpdk-dev] [PATCH] eal: fix memory leak when saving arguments

2021-09-01 Thread Bruce Richardson
On Wed, Sep 01, 2021 at 09:38:47AM +, Conor Walsh wrote: > This patch fixes a memleak which was reported in Bugzilla within the > eal_save_args function. This was caused by the function mistakenly > adding -- to the eal args instead of breaking beforehand. > > Bugzilla ID: 722 > Fixes: 293c53d

[dpdk-dev] [PATCH] eal: fix memory leak when saving arguments

2021-09-01 Thread Conor Walsh
This patch fixes a memleak which was reported in Bugzilla within the eal_save_args function. This was caused by the function mistakenly adding -- to the eal args instead of breaking beforehand. Bugzilla ID: 722 Fixes: 293c53d8b23c ("eal: add telemetry callbacks") Reported-by: Zhihong Peng Signed