* fix for bug #17325, an inc(i) was missing in aloop.

git-svn-id: trunk@15941 -
This commit is contained in:
marco 2010-09-03 16:34:04 +00:00
parent eba99a7742
commit 7e51501541

View File

@ -2804,7 +2804,10 @@ begin
I:=Low(AVarTypes);
Result:=False;
While Not Result and (I<=High(AVarTypes)) do
Result:=((TVarData(V).vType and varTypeMask)=AVarTypes[I]);
begin
Result:=((TVarData(V).vType and varTypeMask)=AVarTypes[I]);
inc(i);
end;
end;