perf tools: Introduce zfree
For the frequent idiom of: free(ptr); ptr = NULL; Make it expect a pointer to the pointer being freed, so that it becomes clear at first sight that the variable being freed is being modified. 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-pfw02ezuab37kha18wlut7ir@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
@@ -497,21 +497,18 @@ void dso__delete(struct dso *dso)
|
||||
symbols__delete(&dso->symbols[i]);
|
||||
|
||||
if (dso->short_name_allocated) {
|
||||
free((char *)dso->short_name);
|
||||
dso->short_name = NULL;
|
||||
zfree((char **)&dso->short_name);
|
||||
dso->short_name_allocated = false;
|
||||
}
|
||||
|
||||
if (dso->long_name_allocated) {
|
||||
free((char *)dso->long_name);
|
||||
dso->long_name = NULL;
|
||||
zfree((char **)&dso->long_name);
|
||||
dso->long_name_allocated = false;
|
||||
}
|
||||
|
||||
dso_cache__free(&dso->cache);
|
||||
dso__free_a2l(dso);
|
||||
free(dso->symsrc_filename);
|
||||
dso->symsrc_filename = NULL;
|
||||
zfree(&dso->symsrc_filename);
|
||||
free(dso);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user