- Subject: [tip:perf/core] perf annotate: Check null of sym pointer before using it
- From: tip-bot for Samuel Liao <samuelliao@xxxxxxxxxxx>
- Date: Wed, 20 Jun 2012 10:01:43 -0700
- Cc: acme@xxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, paulus@xxxxxxxxx, mingo@xxxxxxxxxx, hpa@xxxxxxxxx, mingo@xxxxxxxxxx, davidshan@xxxxxxxxxxx, a.p.zijlstra@xxxxxxxxx, namhyung.kim@xxxxxxx, samuelliao@xxxxxxxxxxx, tglx@xxxxxxxxxxxxx
- Git-commit-id: c0a58fb2bdf033df433cad9009c7dac4c6b872b0
- In-reply-to: <4FCD95D3.90209@gmail.com>
- Reply-to: mingo@xxxxxxxxxx, hpa@xxxxxxxxx, mingo@xxxxxxxxxx, paulus@xxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, acme@xxxxxxxxxx, davidshan@xxxxxxxxxxx, a.p.zijlstra@xxxxxxxxx, namhyung.kim@xxxxxxx, samuelliao@xxxxxxxxxxx, tglx@xxxxxxxxxxxxx
- Robot-id: <tip-bot.git.kernel.org>
- Robot-unsubscribe: Contact <mailto:hpa@xxxxxxxxxx> to get blacklisted from these emails
Commit-ID: c0a58fb2bdf033df433cad9009c7dac4c6b872b0
Gitweb: http://git.kernel.org/tip/c0a58fb2bdf033df433cad9009c7dac4c6b872b0
Author: Samuel Liao <samuelliao@xxxxxxxxxxx>
AuthorDate: Tue, 5 Jun 2012 13:14:59 +0800
Committer: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
CommitDate: Tue, 19 Jun 2012 14:30:26 -0300
perf annotate: Check null of sym pointer before using it
Sym may be NULL, and that will cause perf to crash.
Signed-off-by: Shan Wei <davidshan@xxxxxxxxxxx>
Cc: Ingo Molnar <mingo@xxxxxxxxxx>
Cc: Namhyung Kim <namhyung.kim@xxxxxxx>
Cc: Paul Mackerras <paulus@xxxxxxxxx>
Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
Link: http://lkml.kernel.org/r/4FCD95D3.90209@xxxxxxxxx
Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
---
tools/perf/ui/browsers/annotate.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index 34b1c46..67a2703 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -814,7 +814,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
{
struct disasm_line *pos, *n;
struct annotation *notes;
- const size_t size = symbol__size(sym);
+ size_t size;
struct map_symbol ms = {
.map = map,
.sym = sym,
@@ -834,6 +834,8 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
if (sym == NULL)
return -1;
+ size = symbol__size(sym);
+
if (map->dso->annotate_warned)
return -1;
--
To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
[Linux USB Devel]
[Linux Video &Media]
[Video for Linux]
[Linux Audio Users]
[Photo]
[Yosemite News]
[Yosemite Photos]
[Free Online Dating]
[Linux Kernel]
[Linux SCSI]
[XFree86]