IdeDebugger: fix range check in disassembler

This commit is contained in:
Martin 2024-09-25 22:22:13 +02:00
parent ac1a3e6fd2
commit 84b64855b1

View File

@ -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];