1
0
Fork 0
mirror of https://github.com/isledecomp/isle.git synced 2025-03-22 20:55:38 -04:00

Fix missing float constants ()

This commit is contained in:
MS 2024-05-27 03:22:10 -04:00 committed by GitHub
parent 3c45022864
commit b8ea5bf9ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,6 +103,11 @@ class Compare:
res = CvdumpAnalysis(cv)
for sym in res.nodes:
# Skip nodes where we have almost no information.
# These probably came from SECTION CONTRIBUTIONS.
if sym.name() is None and sym.node_type is None:
continue
# The PDB might contain sections that do not line up with the
# actual binary. The symbol "__except_list" is one example.
# In these cases, just skip this symbol and move on because