mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:58:04 +02:00
IdeDebugger: fix range check in disassembler
This commit is contained in:
parent
ac1a3e6fd2
commit
84b64855b1
@ -670,7 +670,9 @@ begin
|
||||
Result := ALine >= FTopLine;
|
||||
if not Result then
|
||||
exit;
|
||||
{$PUSH}{$Q-}{$R-} // if FTopLine is close to Low(integer) it can overflow
|
||||
ALine := ALine - FTopLine;
|
||||
{$POP}
|
||||
Result := (ALine > 0) and (ALine < length(FLineMap));
|
||||
if Result then
|
||||
AnEntry := FLineMap[ALine];
|
||||
|
Loading…
Reference in New Issue
Block a user