diff options
author | Masami Hiramatsu <[email protected]> | 2015-02-26 17:25:04 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2015-02-26 11:59:05 -0300 |
commit | eb47cb2eb22dfacac9689708f5bd3cb0e975e290 (patch) | |
tree | c44d9dfc967fb2eef639a529ce74dffb1f3da27f | |
parent | 9aaf5a5f479bd68699f2e6f6e5e5f1253377b6da (diff) |
perf probe: Fix get_real_path to free allocated memory in error path
Fix get_real_path to free allocated memory when comp_dir is used for
complementing path and getting an error.
Signed-off-by: Masami Hiramatsu <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Naohiro Aota <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/util/probe-event.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index 662d454cb667..4a93bf433344 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c @@ -549,9 +549,11 @@ static int get_real_path(const char *raw_path, const char *comp_dir, if (access(*new_path, R_OK) == 0) return 0; - if (!symbol_conf.source_prefix) + if (!symbol_conf.source_prefix) { /* In case of searching comp_dir, don't retry */ + zfree(new_path); return -errno; + } switch (errno) { case ENAMETOOLONG: |