projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e70b2fc
)
Removed unused variable
author
Ilia Alshanetsky
<iliaa@php.net>
Mon, 25 Oct 2010 16:38:19 +0000
(16:38 +0000)
committer
Ilia Alshanetsky
<iliaa@php.net>
Mon, 25 Oct 2010 16:38:19 +0000
(16:38 +0000)
ext/gmp/gmp.c
patch
|
blob
|
history
diff --git
a/ext/gmp/gmp.c
b/ext/gmp/gmp.c
index 5e21c9da5e571a7800cb87b0faa2f2332f507877..272b7fc2bd39691290559cb49841c674e704c2c5 100644
(file)
--- a/
ext/gmp/gmp.c
+++ b/
ext/gmp/gmp.c
@@
-957,12
+957,10
@@
ZEND_FUNCTION(gmp_div_q)
ZEND_FUNCTION(gmp_mod)
{
zval **a_arg, **b_arg;
- zval b_copy;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZ", &a_arg, &b_arg) == FAILURE){
return;
- }
-
+ }
gmp_zval_binary_ui_op_ex(return_value, a_arg, b_arg, mpz_mod, (gmp_binary_ui_op_t)mpz_mod_ui, 1, 1, 0 TSRMLS_CC);
}