fix: restore debugInfo null check

Restore the fix implemented by d86b60e6b2
This commit is contained in:
Emerson Pinter 2024-08-22 14:25:34 -03:00
parent c8a838615d
commit 8011144b96

View File

@ -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();