fix for runtime range checking

git-svn-id: trunk@5512 -
This commit is contained in:
mattias 2004-05-25 22:20:36 +00:00
parent 3fb20adcaa
commit 78588945fb

View File

@ -615,7 +615,8 @@ type
TMethodNameTable = packed record
Count : DWord;
Entries : packed array[0..0] of TMethodNameRec;
// for runtime range checking it is important to give a range
Entries : packed array[0..1000000] of TMethodNameRec;
end;
PMethodNameTable = ^TMethodNameTable;