mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-27 10:11:15 +00:00
Ignore imports we can't match
This commit is contained in:
parent
188871df67
commit
24855f0d33
@ -266,6 +266,9 @@ def _match_imports(self):
|
|||||||
# the connection between the thunk functions.
|
# the connection between the thunk functions.
|
||||||
# We already have the symbol name we need from the PDB.
|
# We already have the symbol name we need from the PDB.
|
||||||
for orig, recomp in orig_to_recomp.items():
|
for orig, recomp in orig_to_recomp.items():
|
||||||
|
if orig is None or recomp is None:
|
||||||
|
continue
|
||||||
|
|
||||||
# Match the __imp__ symbol
|
# Match the __imp__ symbol
|
||||||
self._db.set_pair(orig, recomp, SymbolType.POINTER)
|
self._db.set_pair(orig, recomp, SymbolType.POINTER)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user