Skip to content

Commit

Permalink
Update parsedump.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewc12 committed Oct 21, 2023
1 parent 3ea6c32 commit a4a0bc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contrib/windows/parsedump/parsedump.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ def find_first_existing_file(file_paths):

# List of file paths to check
cdb_file_paths_to_check = [
"C:\\Program Files\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"C:\\Program Files\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe",
"C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe"
"%ProgramFiles%\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"%ProgramFiles(x86)%\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"%ProgramFiles%\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe",
"%ProgramFiles(x86)%\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe"
]

cdbstr = find_first_existing_file(cdb_file_paths_to_check)
Expand Down

0 comments on commit a4a0bc1

Please sign in to comment.