mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-17 18:09:32 +02:00
Merged revision(s) 57743 #61d41ced28 from trunk:
GDBMiDebugger: fix range check / used wrong variable ........ git-svn-id: branches/fixes_1_8@57939 -
This commit is contained in:
parent
c8adbabb46
commit
c9cd3c3901
@ -12154,7 +12154,7 @@ var
|
||||
FpDir := 1;
|
||||
FpDiff := ParentFpNum - FpNum;
|
||||
end;
|
||||
if (LastFpDiff <> 0) and (FpDir >= LastFpDiff) then
|
||||
if (LastFpDiff <> 0) and (FpDiff >= LastFpDiff) then
|
||||
Exit(False);
|
||||
|
||||
LastFpDiff := FpDiff;
|
||||
|
Loading…
Reference in New Issue
Block a user