perf probe: Fix the missed parameter initialization
authorLin Ming <ming.m.lin@intel.com>
Fri, 29 Apr 2011 08:41:57 +0000 (08:41 +0000)
committerIngo Molnar <mingo@elte.hu>
Tue, 10 May 2011 15:06:23 +0000 (17:06 +0200)
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 <ming.m.lin@intel.com>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Link: http://lkml.kernel.org/r/1304066518-30420-2-git-send-email-ming.m.lin@intel.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
tools/perf/util/probe-finder.c

index a7c7145a8d4fce6f9b9cf6cf07435226a4bb0e5f..3b9d0b800d5c85c332357220f9c5bd1ed8de4ffc 100644 (file)
@@ -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,