perf stat: Fix affinity memory leaks on error path

Missed cleanup when an error occurs.

Fixes: 49de179577 ("perf stat: No need to setup affinities when starting a workload")
Signed-off-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20241001052327.7052-2-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
Ian Rogers 2024-09-30 22:23:24 -07:00 committed by Namhyung Kim
parent 8d7f85e323
commit 7f6ccb70e4

View File

@ -827,6 +827,7 @@ static int __run_perf_stat(int argc, const char **argv, int run_idx)
}
}
affinity__cleanup(affinity);
affinity = NULL;
evlist__for_each_entry(evsel_list, counter) {
if (!counter->supported) {
@ -965,6 +966,7 @@ static int __run_perf_stat(int argc, const char **argv, int run_idx)
if (forks)
evlist__cancel_workload(evsel_list);
affinity__cleanup(affinity);
return err;
}