diff options
author | 2015-03-27 09:46:03 +0100 | |
---|---|---|
committer | 2015-03-27 09:46:03 +0100 | |
commit | 072e5a1cfabca7276744d24726e094d85721df5c (patch) | |
tree | c7237fa143f72273aa8a8179f741c24b9072001c /tools/perf/util/annotate.c | |
parent | perf/x86/intel: Add INST_RETIRED.ALL workarounds (diff) | |
parent | perf: Fix irq_work 'tail' recursion (diff) | |
download | wireguard-linux-072e5a1cfabca7276744d24726e094d85721df5c.tar.xz wireguard-linux-072e5a1cfabca7276744d24726e094d85721df5c.zip |
Merge branch 'perf/urgent' into perf/core, to pick up fixes and to refresh the tree
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/util/annotate.c')
-rw-r--r-- | tools/perf/util/annotate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c index b72086eca943..7f5bdfc9bc87 100644 --- a/tools/perf/util/annotate.c +++ b/tools/perf/util/annotate.c @@ -30,6 +30,8 @@ static int disasm_line__parse(char *line, char **namep, char **rawp); static void ins__delete(struct ins_operands *ops) { + if (ops == NULL) + return; zfree(&ops->source.raw); zfree(&ops->source.name); zfree(&ops->target.raw); |