From: Anatoly Burakov Date: Tue, 6 Feb 2018 13:35:42 +0000 (+0000) Subject: test/timer_perf: fix memory leak X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=863fc5beca5d2ad0cd49e31a3e2b5a848f786c67;p=dpdk.git test/timer_perf: fix memory leak Fixes: 277afaf3dbcb ("app/test: add timer_perf") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov --- diff --git a/test/test/test_timer_perf.c b/test/test/test_timer_perf.c index afa3a06a3a..0fe2b74cd7 100644 --- a/test/test/test_timer_perf.c +++ b/test/test/test_timer_perf.c @@ -127,6 +127,7 @@ test_timer_perf(void) printf("Time per rte_timer_manage with zero callbacks: %"PRIu64" cycles\n", (end_tsc - start_tsc + iterations/2) / iterations); + rte_free(tms); return 0; }