* Avoid range error in comparisons

This commit is contained in:
Michaël Van Canneyt 2023-05-30 15:56:32 +02:00 committed by Sven/Sarah Barth
parent 30bf8047aa
commit c39e51485c

View File

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