Commit 0f61fec4 authored by unknown's avatar unknown

A fix. Why didn't we use UINT_MAX32?

parent a806cba3
...@@ -1863,9 +1863,9 @@ int Field_long::store(double nr) ...@@ -1863,9 +1863,9 @@ int Field_long::store(double nr)
res=0; res=0;
error= 1; error= 1;
} }
else if (nr > (double) (ulong) ~0L) else if (nr > (double) UINT_MAX32)
{ {
res=(int32) (uint32) ~0L; res= UINT_MAX32;
error= 1; error= 1;
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment