Skip to content

Commit

Permalink
Use a temporary self-hosted file which is missing on the symbol server
Browse files Browse the repository at this point in the history
  • Loading branch information
m417z committed Sep 3, 2024
1 parent e657027 commit e2b94e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/02_download_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ def get_modules_from_extracted_symbols(extracted_symbols: Path):


def make_symbol_server_url(file_name, timestamp, size):
# Temporary self-hosted file which is missing on the symbol server:
# https://msdl.microsoft.com/download/symbols/taskbar.dll/083051263bb000/taskbar.dll
if (file_name, timestamp, size) == ('taskbar.dll', 0x08305126, 0x3bb000):
return f'https://ramensoftware.com/misc/_temp_bin/{file_name}/{timestamp:08X}{size:x}/{file_name}'

return f'https://msdl.microsoft.com/download/symbols/{file_name}/{timestamp:08X}{size:x}/{file_name}'


Expand Down

0 comments on commit e2b94e6

Please sign in to comment.