aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Ming <[email protected]>2011-04-29 08:41:57 +0000
committerIngo Molnar <[email protected]>2011-05-10 17:06:23 +0200
commit2b348a77981227c6b64fb9cf19f7c711a6806bc9 (patch)
treea9ef01298f686f979f4ed37d18d39b89ddbb85a8
parent932fed4e2e42c3d730c01bb63b1c4f812c533d5b (diff)
perf probe: Fix the missed parameter initialization
pubname_callback_param::found should be initialized to 0 in fastpath lookup, the structure is on the stack and uninitialized otherwise. Signed-off-by: Lin Ming <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--tools/perf/util/probe-finder.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c
index a7c7145a8d4f..3b9d0b800d5c 100644
--- a/tools/perf/util/probe-finder.c
+++ b/tools/perf/util/probe-finder.c
@@ -1538,6 +1538,7 @@ static int find_probes(int fd, struct probe_finder *pf)
.file = pp->file,
.cu_die = &pf->cu_die,
.sp_die = &pf->sp_die,
+ .found = 0,
};
struct dwarf_callback_param probe_param = {
.data = pf,