[dpdk-dev] [PATCH] tests/cmdline: fix memory leaks

2021-06-16 Thread ohilyard
From: Owen Hilyard Fixes for a few memory leaks in the cmdline_autotest unit test. All of the leaks were related to not freeing the commandline struct after testing had completed. Signed-off-by: Owen Hilyard --- app/test/test_cmdline_lib.c | 32 1 file changed

[dpdk-dev] [PATCH] tests/cmdline: fix memory leaks

2021-06-16 Thread ohilyard
From: Owen Hilyard Fixes for a few memory leaks in the cmdline_autotest unit test. All of the leaks were related to not freeing the commandline struct after testing had completed. Fixes: dbb860e03e ("cmdline: tests") Signed-off-by: Owen Hilyard Reviewed-by: David Marchand --- app/test/test_

Re: [dpdk-dev] [PATCH] tests/cmdline: fix memory leaks

2021-06-16 Thread David Marchand
On Wed, Jun 16, 2021 at 6:26 PM wrote: > > From: Owen Hilyard > > Fixes for a few memory leaks in the cmdline_autotest unit test. > > All of the leaks were related to not freeing the commandline struct > after testing had completed. We will need a Fixes: tag and Cc: stable. > > Signed-off-by:

Re: [dpdk-dev] [PATCH] tests/cmdline: fix memory leaks

2021-06-23 Thread Olivier Matz
Hi Owen, Thanks for fixing this test. Some comments below. On Wed, Jun 16, 2021 at 02:07:24PM -0400, ohily...@iol.unh.edu wrote: > From: Owen Hilyard > > Fixes for a few memory leaks in the cmdline_autotest unit test. > > All of the leaks were related to not freeing the commandline struct > af