[PATCH v4 04/22] perf test: Fix memory leak in symbols

From: Ian Rogers
Date: Sun Mar 19 2023 - 23:39:54 EST


machine__delete doesn't delete threads. Add call to delete threads
ahead of deleting the machine.

Signed-off-by: Ian Rogers <irogers@xxxxxxxxxx>
---
tools/perf/tests/symbols.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/perf/tests/symbols.c b/tools/perf/tests/symbols.c
index 057b16df6416..0793f8f419e2 100644
--- a/tools/perf/tests/symbols.c
+++ b/tools/perf/tests/symbols.c
@@ -38,6 +38,7 @@ static int init_test_info(struct test_info *ti)
static void exit_test_info(struct test_info *ti)
{
thread__put(ti->thread);
+ machine__delete_threads(ti->machine);
machine__delete(ti->machine);
}

--
2.40.0.rc1.284.g88254d51c5-goog