mirror of https://gitee.com/openkylin/linux.git
perf parse-events: Fix memory leaks found on parse_events
free_list_evsel() deals with tools/perf/ evsels, not with libperf perf_evsels, use the right destructor and avoid a leak, as evsel__delete() will delete something perf_evsel__delete() doesn't. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Acked-by: Jiri Olsa <jolsa@redhat.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: clang-built-linux@googlegroups.com Link: http://lore.kernel.org/lkml/20200319023101.82458-1-irogers@google.com [ split from a larger patch ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
e8dfb81838
commit
672f707ef5
|
@ -44,7 +44,7 @@ static void free_list_evsel(struct list_head* list_evsel)
|
|||
|
||||
list_for_each_entry_safe(evsel, tmp, list_evsel, core.node) {
|
||||
list_del_init(&evsel->core.node);
|
||||
perf_evsel__delete(evsel);
|
||||
evsel__delete(evsel);
|
||||
}
|
||||
free(list_evsel);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue