FpDebug: Add safeguard/error-checks to TDwarfInformationEntry.PrepareAbbrev / PrepareAbbrevData. Issue #41459

This commit is contained in:
Martin 2025-02-23 23:34:06 +01:00
parent a8a1fc1666
commit 0530a14bd5

View File

@ -2768,7 +2768,7 @@ end;
procedure TDwarfInformationEntry.PrepareAbbrev;
begin
if dieAbbrevValid in FFlags then
if (dieAbbrevValid in FFlags) or (FInformationEntry = nil) then
exit;
FInformationData := FCompUnit.FAbbrevList.FindLe128bFromPointer(FInformationEntry, FAbbrev);
Include(FFlags, dieAbbrevValid);
@ -2783,6 +2783,9 @@ function TDwarfInformationEntry.PrepareAbbrevData: Boolean;
var
AbbrList: TDwarfAbbrevList;
begin
if FInformationEntry = nil then
exit(False);
Result := FAbbrevData <> nil;
if dieAbbrevDataValid in FFlags then
exit;