* Avoid range error in comparisons

This commit is contained in:
Michaël Van Canneyt 2023-05-30 15:56:32 +02:00
parent d44c60b58d
commit 44c859ae0a

View File

@ -474,7 +474,7 @@
var
methodtable : pmethodnametable;
i : dword;
i : longint; // in case count=0
ovmt : PVmt;
begin
@ -500,7 +500,7 @@
class function TObject.MethodName(address : codepointer) : shortstring;
var
methodtable : pmethodnametable;
i : dword;
i : longint; // in case count=0
ovmt : PVmt;
begin
ovmt:=PVmt(self);