diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-08-26 23:32:45 +0200 |
---|---|---|
committer | Namhyung Kim <namhyung@kernel.org> | 2024-02-27 06:43:00 +0100 |
commit | ef5de1613d7d92bdc975e6beb34bb0fa94f34078 (patch) | |
tree | 0233f62e4f5ca31d1cf13b5e21ba9c6efea429f8 /tools/perf | |
parent | perf test: Fix spelling mistake "curent" -> "current" (diff) | |
download | linux-ef5de1613d7d92bdc975e6beb34bb0fa94f34078.tar.xz linux-ef5de1613d7d92bdc975e6beb34bb0fa94f34078.zip |
perf pmu: Fix a potential memory leak in perf_pmu__lookup()
The commit in Fixes has reordered some code, but missed an error handling
path.
'goto err' now, in order to avoid a memory leak in case of error.
Fixes: f63a536f03a2 ("perf pmu: Merge JSON events with sysfs at load time")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Ian Rogers <irogers@google.com>
Cc: kernel-janitors@vger.kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/9538b2b634894c33168dfe9d848d4df31fd4d801.1693085544.git.christophe.jaillet@wanadoo.fr
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/util/pmu.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c index 437386dedd5c..f39cbbc1a7ec 100644 --- a/tools/perf/util/pmu.c +++ b/tools/perf/util/pmu.c @@ -1022,10 +1022,9 @@ struct perf_pmu *perf_pmu__lookup(struct list_head *pmus, int dirfd, const char * type value and format definitions. Load both right * now. */ - if (pmu_format(pmu, dirfd, name)) { - free(pmu); - return NULL; - } + if (pmu_format(pmu, dirfd, name)) + goto err; + pmu->is_core = is_pmu_core(name); pmu->cpus = pmu_cpumask(dirfd, name, pmu->is_core); |