Merge pull request #555 from shu-tom/develop

Fixed an issue where the symbol file download from the Microsoft site failed
This commit is contained in:
ikelos
2021-08-30 13:48:34 +01:00
committed by GitHub
@@ -170,9 +170,9 @@ class PDBUtility(interfaces.configuration.VersionableInterface):
pdb_name = debug_entry.PdbFileName.decode("utf-8").strip('\x00')
age = debug_entry.Age
guid = "{:x}{:x}{:x}{}".format(debug_entry.Signature_Data1, debug_entry.Signature_Data2,
debug_entry.Signature_Data3,
binascii.hexlify(debug_entry.Signature_Data4).decode('utf-8'))
guid = "{:08x}{:04x}{:04x}{}".format(debug_entry.Signature_Data1, debug_entry.Signature_Data2,
debug_entry.Signature_Data3,
binascii.hexlify(debug_entry.Signature_Data4).decode('utf-8'))
return guid, age, pdb_name
@classmethod