mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:48:08 +02:00
* Increased the bounds of TBooleanArray to prevent a range check error while linking Lazarus.
This commit is contained in:
parent
487721dea8
commit
59fca3a01d
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user