mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 18:20:00 +02:00
FpDebug: Fixed incorrect new length of FLocation array in TFpInternalBreakpoint.RemoveAddress
fix c1611124b4
This commit is contained in:
parent
c28cc988ec
commit
16218b91f9
@ -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