Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b348a77 authored by Lin Ming's avatar Lin Ming Committed by Ingo Molnar
Browse files

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: default avatarLin 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: default avatarIngo Molnar <mingo@elte.hu>
parent 932fed4e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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,