From 6567250495117bfa4eb8b58c805897133c0d3ff2 Mon Sep 17 00:00:00 2001 From: Martin Hunt Date: Fri, 28 Mar 2008 17:04:22 -0400 Subject: Fix regression. --- runtime/stack-i386.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack-i386.c') diff --git a/runtime/stack-i386.c b/runtime/stack-i386.c index c99b4a8c..11919b29 100644 --- a/runtime/stack-i386.c +++ b/runtime/stack-i386.c @@ -69,7 +69,7 @@ static void __stp_stack_print (struct pt_regs *regs, int verbose, int levels) /* If an error happened or we hit a kretprobe trampoline, use fallback backtrace */ /* FIXME: is there a way to unwind across kretprobe trampolines? */ if (ret < 0 || (ret > 0 && UNW_PC(&info) == _stp_kretprobe_trampoline)) - _stp_stack_print_fallback(UNW_SP(&info), verbose); + _stp_stack_print_fallback(context, UNW_SP(&info), verbose); break; } #endif /* CONFIG_FRAME_POINTER */ -- cgit