[PATCH 2/4] perf svghelper: Fix memory leak in svg_build_topology_map

From: Wei Li
Date: Thu May 21 2020 - 09:33:07 EST


From: Li Bin <huawei.libin@xxxxxxxxxx>

Fix leak of memory pointed to by t.sib_thr and t.sib_core in
svg_build_topology_map.

Signed-off-by: Li Bin <huawei.libin@xxxxxxxxxx>
---
tools/perf/util/svghelper.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/tools/perf/util/svghelper.c b/tools/perf/util/svghelper.c
index 96f941e01681..e2b3b0e2fafe 100644
--- a/tools/perf/util/svghelper.c
+++ b/tools/perf/util/svghelper.c
@@ -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;

nr_cpus = min(env->nr_cpus_online, MAX_NR_CPUS);

@@ -767,12 +768,14 @@ int svg_build_topology_map(struct perf_env *env)

if (!t.sib_core || !t.sib_thr) {
fprintf(stderr, "topology: no memory\n");
+ ret = -1;
goto exit;
}

for (i = 0; i < env->nr_sibling_cores; i++) {
if (str_to_bitmap(sib_core, &t.sib_core[i], nr_cpus)) {
fprintf(stderr, "topology: can't parse siblings map\n");
+ ret = -1;
goto exit;
}

@@ -782,6 +785,7 @@ int svg_build_topology_map(struct perf_env *env)
for (i = 0; i < env->nr_sibling_threads; i++) {
if (str_to_bitmap(sib_thr, &t.sib_thr[i], nr_cpus)) {
fprintf(stderr, "topology: can't parse siblings map\n");
+ ret = -1;
goto exit;
}

@@ -791,6 +795,7 @@ int svg_build_topology_map(struct perf_env *env)
topology_map = malloc(sizeof(int) * nr_cpus);
if (!topology_map) {
fprintf(stderr, "topology: no memory\n");
+ ret = -1;
goto exit;
}

@@ -798,12 +803,11 @@ int svg_build_topology_map(struct perf_env *env)
topology_map[i] = -1;

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;
}
--
2.17.1