Bug 914253 patch 6 - Linux stacks are lowercase hexidecimal (although this was temporarily not true due to bug 939610, which is probably when mccr8 started fix_linux_stack.py). No review.

This commit is contained in:
L. David Baron 2014-08-06 15:52:49 -07:00
parent d67e757dc8
commit e71c46556e

View File

@ -227,7 +227,7 @@ def addressToSymbol(file, address):
cache[address] = result
return result
line_re = re.compile("^(.*) ?\[([^ ]*) \+(0x[0-9a-f]{1,8})\](.*)$")
line_re = re.compile("^(.*) ?\[([^ ]*) \+(0x[0-9A-F]{1,8})\](.*)$")
balance_tree_re = re.compile("^([ \|0-9-]*)")
def fixSymbols(line):