You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am encounter some pdb with no omap info ( also none DBIExtraStreams.section_headers ).
When i call pdb.address_map() and Err(AddressMapNotFound) returned.
I wonder if this behavior is expected?
I am trying to dump the symbol tables, using the address_map to translate (metioned in #17 )
What should i do with pdbs without extra streams or omap infos?
Here is the sample pdb i download from microsoft symbol server. mscorlib.ni.pdb.zip
The text was updated successfully, but these errors were encountered:
Without section headers, the PDB can't translate {section, offsets} to/from RVAs. There's simply no data for a pdb::AddressMap to use.
You could perform such translation yourself using the section headers in the corresponding executable, but pdb doesn't touch executables, so that's out of scope here.
I am encounter some pdb with no omap info ( also none
DBIExtraStreams.section_headers
).When i call
pdb.address_map()
andErr(AddressMapNotFound)
returned.I wonder if this behavior is expected?
I am trying to dump the symbol tables, using the address_map to translate (metioned in #17 )
What should i do with pdbs without extra streams or omap infos?
Here is the sample pdb i download from microsoft symbol server.
mscorlib.ni.pdb.zip
The text was updated successfully, but these errors were encountered: