Browse Source

win: Fix generating symbols.

Cheng Zhao 10 years ago
parent
commit
a04cb08715
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/win/generate_breakpad_symbols.py

+ 1 - 1
tools/win/generate_breakpad_symbols.py

@@ -67,7 +67,7 @@ def GenerateSymbols(options, binaries):
           print "Generating symbols for %s" % binary
 
       syms = GetCommandOutput([DUMP_SYMS, binary])
-      module_line = re.match("MODULE [^ ]+ [^ ]+ ([0-9A-F]+) (.*)\r\n", syms)
+      module_line = re.match("MODULE [^ ]+ [^ ]+ ([0-9A-Fa-f]+) (.*)\r\n", syms)
       if module_line == None:
         with print_lock:
           print "Failed to get symbols for %s" % binary