From 1aaadf3ca33fcf9079138d0fb00de61f6b4b4ddf Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Mon, 16 Feb 2004 15:13:49 +0000 Subject: [PATCH] MFH: Better gmp fix. --- ext/gmp/gmp.c | 2 -- 1 file changed, 2 deletions(-) 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; } -- 2.50.1