mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-16 07:30:16 +00:00
GP-724 fix setting "PDB Loaded" flag
This commit is contained in:
parent
3d45118c63
commit
364ff3f8ac
@ -15,9 +15,10 @@
|
||||
*/
|
||||
package ghidra.app.util.pdb.pdbapplicator;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.*;
|
||||
|
||||
import java.math.BigInteger;
|
||||
|
||||
import ghidra.app.cmd.label.SetLabelPrimaryCmd;
|
||||
import ghidra.app.util.NamespaceUtils;
|
||||
import ghidra.app.util.SymbolPath;
|
||||
@ -204,7 +205,7 @@ public class PdbApplicator {
|
||||
throw new PdbException("Invalid Restriction");
|
||||
}
|
||||
|
||||
if (program == null) {
|
||||
if (program != null) {
|
||||
Options options = program.getOptions(Program.PROGRAM_INFO);
|
||||
options.setBoolean(PdbParserConstants.PDB_LOADED, true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user