FpDebug: fix range check error in stack

(cherry picked from commit 126dd815cd)
This commit is contained in:
Martin 2022-09-09 22:54:06 +02:00
parent 9f70423e35
commit 1940610041

View File

@ -1157,7 +1157,7 @@ end;
function TDbgCallstackEntry.GetProcSymbol: TFpSymbol;
begin
if not FIsSymbolResolved then begin
if FIndex > 0 then
if (FIndex > 0) and (FAnAddress <> 0) then
FSymbol := FThread.Process.FindProcSymbol(FAnAddress - 1) // -1 => inside the call instruction
else
FSymbol := FThread.Process.FindProcSymbol(FAnAddress);