mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-10 06:02:09 +00:00
fix: restore debugInfo null check
Restore the fix implemented by d86b60e6b2
This commit is contained in:
parent
c8a838615d
commit
8011144b96
@ -358,6 +358,9 @@ public class PdbAddressManager {
|
||||
private void determineMemoryBlocks() throws CancelledException {
|
||||
AbstractPdb pdb = applicator.getPdb();
|
||||
PdbDebugInfo debugInfo = pdb.getDebugInfo();
|
||||
if(debugInfo == null) {
|
||||
return;
|
||||
}
|
||||
segmentMapList = debugInfo.getSegmentMapList();
|
||||
if (debugInfo instanceof PdbNewDebugInfo) {
|
||||
DebugData debugData = ((PdbNewDebugInfo) debugInfo).getDebugData();
|
||||
|
Loading…
Reference in New Issue
Block a user