mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 19:16:16 +02:00
LazDebuggerFp: Fix endless loop, in stack supplier.
git-svn-id: trunk@64319 -
This commit is contained in:
parent
b8b3de002a
commit
bc73f7750f
@ -2270,8 +2270,10 @@ begin
|
||||
then It.Next;
|
||||
|
||||
if not FpDebugger.IsPausedAndValid then begin
|
||||
while (not IT.EOM) and (TCallStackEntry(It.DataPtr^).Index <= ACallstack.HighestUnknown) do
|
||||
while (not IT.EOM) and (TCallStackEntry(It.DataPtr^).Index <= ACallstack.HighestUnknown) do begin
|
||||
TCallStackEntry(It.DataPtr^).Validity := ddsInvalid;
|
||||
IT.Next;
|
||||
end;
|
||||
It.Free;
|
||||
exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user