mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-10 09:13:58 -09: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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user