diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-10 13:26:55 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-10 14:51:10 -0500 |
commit | ee021d42238daadc7ba49274bb0ba7dff219c6ab (patch) | |
tree | 204b65fc9b3543e090ce762796853f1cf2018e21 /tools | |
parent | bf4414ae7b86cddca60a5b510954a37d30583a1f (diff) |
perf symbols: Set freed members to NULL in dso destructor
To help in debugging use after free bugs.
Reported-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-3ckwsob2g1q23s77nuhexrq7@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/dso.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c index 2c7e1899a735..19babb0d365d 100644 --- a/tools/perf/util/dso.c +++ b/tools/perf/util/dso.c | |||
@@ -475,13 +475,23 @@ void dso__delete(struct dso *dso) | |||
475 | int i; | 475 | int i; |
476 | for (i = 0; i < MAP__NR_TYPES; ++i) | 476 | for (i = 0; i < MAP__NR_TYPES; ++i) |
477 | symbols__delete(&dso->symbols[i]); | 477 | symbols__delete(&dso->symbols[i]); |
478 | if (dso->short_name_allocated) | 478 | |
479 | if (dso->short_name_allocated) { | ||
479 | free((char *)dso->short_name); | 480 | free((char *)dso->short_name); |
480 | if (dso->long_name_allocated) | 481 | dso->short_name = NULL; |
482 | dso->short_name_allocated = false; | ||
483 | } | ||
484 | |||
485 | if (dso->long_name_allocated) { | ||
481 | free((char *)dso->long_name); | 486 | free((char *)dso->long_name); |
487 | dso->long_name = NULL; | ||
488 | dso->long_name_allocated = false; | ||
489 | } | ||
490 | |||
482 | dso_cache__free(&dso->cache); | 491 | dso_cache__free(&dso->cache); |
483 | dso__free_a2l(dso); | 492 | dso__free_a2l(dso); |
484 | free(dso->symsrc_filename); | 493 | free(dso->symsrc_filename); |
494 | dso->symsrc_filename = NULL; | ||
485 | free(dso); | 495 | free(dso); |
486 | } | 496 | } |
487 | 497 | ||