* more false positives of unintialized varibles worked around

This commit is contained in:
florian 2022-01-22 17:35:51 +01:00
parent 45840da4dd
commit 366aedc6d8

View File

@ -1167,6 +1167,9 @@ begin
Temp:=0;
Code:=InitVal(s,negative,base);
{ avoid error about being uninitialized }
UnsignedUpperLimit := 0;
if (base=10) or negative then
begin //always limit to either Low(DestType) or High(DestType)
case DestSize of