Loosen exception handling in MakeInt(), so that not only EInvalidOp results in errors. Probably related to http://www.heidisql.com/forum.php?t=21727

This commit is contained in:
Ansgar Becker
2016-07-16 07:54:27 +00:00
parent 63f2d8c25a
commit 064d4e2a04

View File

@ -561,8 +561,7 @@ begin
try
Result := Trunc(MakeFloat(Str));
except
on E:EInvalidOp do
Result := 0;
Result := 0;
end;
end;