[PATCH v2 1/2] perf parse-event: Release cpu_map if evsel alloc failed

From: Namhyung Kim
Date: Thu Sep 17 2020 - 02:02:34 EST


Signed-off-by: Namhyung Kim <namhyung@xxxxxxxxxx>
---
tools/perf/util/parse-events.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 667cbca1547a..176a51698a64 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -360,8 +360,10 @@ __add_event(struct list_head *list, int *idx,
event_attr_init(attr);

evsel = evsel__new_idx(attr, *idx);
- if (!evsel)
+ if (!evsel) {
+ perf_cpu_map__put(cpus);
return NULL;
+ }

(*idx)++;
evsel->core.cpus = perf_cpu_map__get(cpus);
--
2.28.0.618.gf4bc123cb7-goog