diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-02-16 15:13:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-02-16 15:13:40 +0000 |
commit | 4f388ba849de490da0c80ce1f7d923a96b84754c (patch) | |
tree | c7317d46e34db5b8b948dc70cd74126987ae9d42 | |
parent | bf807f6d698d750ecdc8bd84396ead53c98965e1 (diff) | |
download | php-git-4f388ba849de490da0c80ce1f7d923a96b84754c.tar.gz |
Better gmp fix.
-rw-r--r-- | ext/gmp/gmp.c | 2 |
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; } |