* avoid warning/error on uninitialized variable

This commit is contained in:
florian 2022-01-22 14:13:32 +01:00
parent 30b0d98636
commit 115f83794b

View File

@ -1277,6 +1277,9 @@ begin
{$ifdef CPU64}
8: UpperLimit:=High(QWord);
{$endif CPU64}
else
{ avoid error about being uninitialized }
UpperLimit:=0;
end;
{$else VER3_2}
UpperLimit:=High(ValUInt); //this preserves 3.2 (and earlier) behaviour