Ignore imports we can't match

This commit is contained in:
disinvite 2024-04-07 21:52:56 -04:00
parent 188871df67
commit 24855f0d33

View File

@ -266,6 +266,9 @@ def _match_imports(self):
# the connection between the thunk functions.
# We already have the symbol name we need from the PDB.
for orig, recomp in orig_to_recomp.items():
if orig is None or recomp is None:
continue
# Match the __imp__ symbol
self._db.set_pair(orig, recomp, SymbolType.POINTER)