Re: [dpdk-dev] [PATCH v1] test: fix devargs test case memory leak

2021-10-25 Thread David Marchand
On Sat, Oct 23, 2021 at 2:40 PM David Marchand wrote: > On Sat, Oct 23, 2021 at 2:18 PM Xueming Li wrote: > > > > In layer argument test function, kvargs are parsed and checked without > > free. This patch calls rte_kvargs_free() function to avoid memory leak. > > > > Coverity issue: 373631 > > F

[dpdk-dev] [PATCH v1] test: fix devargs test case memory leak

2021-10-23 Thread Xueming Li
In layer argument test function, kvargs are parsed and checked without free. This patch calls rte_kvargs_free() function to avoid memory leak. Fixes: a4975cd20dca ("test: add devargs test cases") Signed-off-by: Xueming Li --- app/test/test_devargs.c | 2 ++ 1 file changed, 2 insertions(+) diff

Re: [dpdk-dev] [PATCH v1] test: fix devargs test case memory leak

2021-10-23 Thread David Marchand
On Sat, Oct 23, 2021 at 2:18 PM Xueming Li wrote: > > In layer argument test function, kvargs are parsed and checked without > free. This patch calls rte_kvargs_free() function to avoid memory leak. > Coverity issue: 373631 > Fixes: a4975cd20dca ("test: add devargs test cases") > > Signed-off-by: