summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-02-16 15:13:40 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-02-16 15:13:40 +0000
commit4f388ba849de490da0c80ce1f7d923a96b84754c (patch)
treec7317d46e34db5b8b948dc70cd74126987ae9d42
parentbf807f6d698d750ecdc8bd84396ead53c98965e1 (diff)
downloadphp-git-4f388ba849de490da0c80ce1f7d923a96b84754c.tar.gz
Better gmp fix.
-rw-r--r--ext/gmp/gmp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
index 0825358693..08633ceba6 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -312,7 +312,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;
}
@@ -358,7 +357,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;
}