[Bug runtime/14026] print_ubacktrace doesn't resolve the symbol name
adrian.m.negreanu at intel dot com
sourceware-bugzilla@sourceware.org
Wed May 2 13:22:00 GMT 2012
http://sourceware.org/bugzilla/show_bug.cgi?id=14026
--- Comment #6 from Negreanu Adrian <adrian.m.negreanu at intel dot com> 2012-05-02 13:21:55 UTC ---
The patch below made it work for me:
diff --git a/runtime/unwind.c b/runtime/unwind.c
index e440177..3ac7f8d 100644
--- a/runtime/unwind.c
+++ b/runtime/unwind.c
@@ -610,7 +610,7 @@ static int processCFI(const u8 *start, const u8 *end,
unsigned long targetLoc,
break;
}
dbug_unwind(1, "targetLoc=%lx state->loc=%lx\n", targetLoc,
state->loc);
- if (ptr.p8 > end)
+ if (ptr.p8 >= end)
result = 0;
if (result && targetLoc != 0 && targetLoc < state->loc)
return 1;
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Systemtap
mailing list