mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 05:49:15 +02:00
Merge branch 'fpdebug-breakpoint-removeaddress-fix' into 'main'
FpDebug: Fixed incorrect new length of FLocation array in TFpInternalBreakpoint.RemoveAddress See merge request freepascal.org/lazarus/lazarus!26
This commit is contained in:
commit
57d356a2a2
@ -3134,7 +3134,7 @@ begin
|
||||
if i < 0 then
|
||||
exit;
|
||||
FLocation[i] := FLocation[l];
|
||||
SetLength(FLocation, l-1);
|
||||
SetLength(FLocation, l);
|
||||
FProcess.FBreakMap.RemoveLocotion(ALocation, Self);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user