Fix missing float constants

This commit is contained in:
disinvite 2024-05-26 21:46:01 -04:00
parent 3c45022864
commit fcf92e43ee

View File

@ -103,6 +103,11 @@ def _load_cvdump(self):
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