* Correct allocation size for IsHandled, index is 1-based

This commit is contained in:
Michaël Van Canneyt 2025-03-24 16:46:49 +01:00
parent cafaa9f5b8
commit 6314d69c40

View File

@ -1820,7 +1820,7 @@ Implementation
hp:=TCmdStrListItem(hp.next);
end;
ScriptCount:=i;
SetLength(IsHandled,ScriptCount);
SetLength(IsHandled,ScriptCount+1); // 1-based index used.
end;
procedure TInternalLinker.ParseScript_PostCheck;