Skip to content

Commit e0ca670

Browse files
Manciukicgregkh
authored andcommitted
perf symbol-elf: Fix memory leak by freeing sdt_note.args
commit 69c9ffe upstream. Reported by ASan. Signed-off-by: Riccardo Mancini <rickyman7@gmail.com> Acked-by: Ian Rogers <irogers@google.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Fabian Hemmer <copy@copy.sh> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Remi Bernon <rbernon@codeweavers.com> Cc: Jiri Slaby <jirislaby@kernel.org> Link: http://lore.kernel.org/lkml/20210602220833.285226-1-rickyman7@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Hanjun Guo <guohanjun@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 0d8e39b commit e0ca670

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tools/perf/util/symbol-elf.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2360,6 +2360,7 @@ int cleanup_sdt_note_list(struct list_head *sdt_notes)
23602360

23612361
list_for_each_entry_safe(pos, tmp, sdt_notes, note_list) {
23622362
list_del_init(&pos->note_list);
2363+
zfree(&pos->args);
23632364
zfree(&pos->name);
23642365
zfree(&pos->provider);
23652366
free(pos);

0 commit comments

Comments
 (0)