mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-4595 - PDB fix class containing member with same type name and primitive typedef and use default type handler
This commit is contained in:
parent
2b73a6157f
commit
3326d42baf
7 changed files with 116 additions and 73 deletions
|
@ -110,8 +110,9 @@ public class PdbDeveloperApplyDummyScript extends GhidraScript {
|
|||
try (AbstractPdb pdb = PdbParser.parse(pdbFile, pdbReaderOptions, monitor)) {
|
||||
monitor.setMessage("PDB: Parsing " + pdbFile + "...");
|
||||
pdb.deserialize();
|
||||
DefaultPdbApplicator applicator = new DefaultPdbApplicator(pdb, program,
|
||||
program.getDataTypeManager(), program.getImageBase(), pdbApplicatorOptions, log);
|
||||
DefaultPdbApplicator applicator =
|
||||
new DefaultPdbApplicator(pdb, program, program.getDataTypeManager(),
|
||||
program.getImageBase(), pdbApplicatorOptions, monitor, log);
|
||||
applicator.applyNoAnalysisState();
|
||||
}
|
||||
catch (PdbException | IOException e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue