Hi Pierre,

The check for (byte_count_signed > 2147483648) looks ugly and it's even wrong.

It should be changed to something like (byte_count_signed > INT32_MAX) where INT32_MAX = 0x7fffffff (or 2147483647).

Thanks. Dmitry.

On 02/14/2011 12:08 PM, Pierre Joye wrote:
(byte_count_signed>  2147483648)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to