* Increased the bounds of TBooleanArray to prevent a range check error while linking Lazarus.

This commit is contained in:
Yuriy Sydorov 2021-12-12 15:50:12 +02:00
parent 487721dea8
commit 59fca3a01d

View File

@ -98,7 +98,7 @@ interface
function PostProcessMachExecutable(const fn: string; isdll: boolean): boolean;
end;
TBooleanArray = array [1..1024] of boolean;
TBooleanArray = array [1..100000] of boolean;
PBooleanArray = ^TBooleanArray;
TInternalLinker = class(TLinker)