From: Thomas Jarosch Date: Fri, 25 Jan 2013 10:21:39 +0000 (+0100) Subject: perf header: Fix memory leak for the "Not caching a kptr_restrict'ed /proc/kallsyms... X-Git-Tag: upstream/snapshot3+hdmi~5742^2~12^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdae6373910c10e27b8ae07e11e821b183d0bba5;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git perf header: Fix memory leak for the "Not caching a kptr_restrict'ed /proc/kallsyms" case cppcheck reported: [util/header.c:316]: (error) Memory leak: filename [util/header.c:316]: (error) Memory leak: linkname Signed-off-by: Thomas Jarosch Link: http://lkml.kernel.org/r/9377388.0eFDp53iW6@storm Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index e17a8fe..7b24cf3 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c @@ -313,7 +313,8 @@ int build_id_cache__add_s(const char *sbuild_id, const char *debugdir, if (is_kallsyms) { if (symbol_conf.kptr_restrict) { pr_debug("Not caching a kptr_restrict'ed /proc/kallsyms\n"); - return 0; + err = 0; + goto out_free; } realname = (char *) name; } else