Skip to content

Commit

Permalink
Bug 914253 patch 6 - Linux stacks are lowercase hexidecimal (although…
Browse files Browse the repository at this point in the history
… this was temporarily not true due to bug 939610, which is probably when mccr8 started fix_linux_stack.py). No review.
  • Loading branch information
dbaron committed Aug 6, 2014
1 parent d67e757 commit e71c465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rb/fix_linux_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e71c465

Please sign in to comment.