From: Ilia Alshanetsky Date: Mon, 16 Feb 2004 15:13:49 +0000 (+0000) Subject: MFH: Better gmp fix. X-Git-Tag: php-4.3.5RC3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1aaadf3ca33fcf9079138d0fb00de61f6b4b4ddf;p=php MFH: Better gmp fix. --- diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 6b08129cdd..bd26a062c6 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -309,7 +309,6 @@ static inline void gmp_zval_binary_ui_op_ex(zval *return_value, zval **a_arg, zv FETCH_GMP_ZVAL(gmpnum_b, b_arg); } - convert_to_long_ex(b_arg); if (!Z_LVAL_PP(b_arg)) { RETURN_FALSE; } @@ -353,7 +352,6 @@ static inline void gmp_zval_binary_ui_op2_ex(zval *return_value, zval **a_arg, z FETCH_GMP_ZVAL(gmpnum_b, b_arg); } - convert_to_long_ex(b_arg); if (!Z_LVAL_PP(b_arg)) { RETURN_FALSE; }