mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
perf svghelper: Avoid memory leak
On success path the sib_core and sib_thr values weren't being freed. Detected by clang-tidy. Signed-off-by: Ian Rogers <irogers@google.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Ravi Bangoria <ravi.bangoria@amd.com> Cc: Nick Desaulniers <ndesaulniers@google.com> Cc: Yang Jihong <yangjihong1@huawei.com> Cc: Huacai Chen <chenhuacai@kernel.org> Cc: Nathan Chancellor <nathan@kernel.org> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: llvm@lists.linux.dev Cc: Ming Wang <wangming01@loongson.cn> Cc: Tom Rix <trix@redhat.com> Cc: bpf@vger.kernel.org Link: https://lore.kernel.org/r/20231009183920.200859-14-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
parent
ef1aec6000
commit
63d471979e
@ -754,6 +754,7 @@ int svg_build_topology_map(struct perf_env *env)
|
||||
int i, nr_cpus;
|
||||
struct topology t;
|
||||
char *sib_core, *sib_thr;
|
||||
int ret = -1;
|
||||
|
||||
nr_cpus = min(env->nr_cpus_online, MAX_NR_CPUS);
|
||||
|
||||
@ -799,11 +800,11 @@ int svg_build_topology_map(struct perf_env *env)
|
||||
|
||||
scan_core_topology(topology_map, &t, nr_cpus);
|
||||
|
||||
return 0;
|
||||
ret = 0;
|
||||
|
||||
exit:
|
||||
zfree(&t.sib_core);
|
||||
zfree(&t.sib_thr);
|
||||
|
||||
return -1;
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user