mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-4025 - PDB - Use ByteProvider in place of RandomAccessFile
This commit is contained in:
parent
c225fac124
commit
4da04423bd
15 changed files with 152 additions and 114 deletions
|
@ -62,7 +62,7 @@ public class PdbDeveloperDumpScript extends GhidraScript {
|
|||
String message = "Processing PDB Dump of: " + pdbFileName;
|
||||
monitor.setMessage(message);
|
||||
Msg.info(this, message);
|
||||
try (AbstractPdb pdb = PdbParser.parse(pdbFileName, new PdbReaderOptions(), monitor)) {
|
||||
try (AbstractPdb pdb = PdbParser.parse(pdbFile, new PdbReaderOptions(), monitor)) {
|
||||
pdb.deserialize();
|
||||
FileWriter fileWriter = new FileWriter(dumpFile);
|
||||
BufferedWriter bufferedWriter = new BufferedWriter(fileWriter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue