mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
perf top: Fix error handling in cmd_top()
[ Upstream commit 70c819e4bf ]
We should go to the cleanup path, to avoid leaks, detected using gcc's
ASan.
Signed-off-by: Changbin Du <changbin.du@gmail.com>
Reviewed-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt (VMware) <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/20190316080556.3075-9-changbin.du@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
801a590193
commit
dac5fedfc9
@@ -1345,8 +1345,9 @@ int cmd_top(int argc, const char **argv)
|
||||
goto out_delete_evlist;
|
||||
|
||||
symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
|
||||
if (symbol__init(NULL) < 0)
|
||||
return -1;
|
||||
status = symbol__init(NULL);
|
||||
if (status < 0)
|
||||
goto out_delete_evlist;
|
||||
|
||||
sort__setup_elide(stdout);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user