LazDebuggerFp: fix getting full Callstack.Count - Issue #39886

(cherry picked from commit 61e5fb272a)
This commit is contained in:
Martin 2022-09-06 21:26:07 +02:00
parent 289e8b9397
commit 9f70423e35

View File

@ -547,7 +547,8 @@ begin
FDebugger.FLockList.GetLockFor(ThreadCallStack);
try
CurCnt := ThreadCallStack.Count;
while (not StopRequested) and (FRequiredMinCount > CurCnt) and
while (not StopRequested) and
( (FRequiredMinCount > CurCnt) or (FRequiredMinCount < 0) ) and
(not ThreadCallStack.HasReadAllAvailableFrames)
do begin
ReqCnt := Min(CurCnt + 5, FRequiredMinCount);