mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
FpDebug: fix overflow in stack eval
This commit is contained in:
parent
915fbfa830
commit
315bb059d8
@ -3098,9 +3098,9 @@ begin
|
||||
if not OutSideFrame then begin
|
||||
{$PUSH}{$R-}{$Q-}
|
||||
StackPtr := FrameBase + 2 * Size; // After popping return-addr from "FrameBase + Size"
|
||||
{$POP}
|
||||
if not Process.ReadData(FrameBase + Size, Size, Address) or (Address = 0) then Break;
|
||||
if not Process.ReadData(FrameBase, Size, FrameBase) then Break;
|
||||
{$POP}
|
||||
end;
|
||||
AnEntry := TDbgCallstackEntry.create(Self, NextIdx, FrameBase, Address);
|
||||
AnEntry.RegisterValueList.DbgRegisterAutoCreate[nIP].SetValue(Address, IntToStr(Address),Size, IP);
|
||||
|
Loading…
Reference in New Issue
Block a user