diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/symbolstore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/symbolstore.py b/bin/symbolstore.py index 941f44802174..823be626cce6 100755 --- a/bin/symbolstore.py +++ b/bin/symbolstore.py @@ -485,7 +485,7 @@ class Dumper_Win32(Dumper): or exe files with the same base name next to them.""" if file.endswith(".pdb"): (path,ext) = os.path.splitext(file) - if os.path.isfile(path + ".exe") or os.path.isfile(path + ".dll"): + if os.path.isfile(path + ".exe") or os.path.isfile(path + ".dll") or os.path.isfile(path + ".bin"): return True return False |