diff options
author | Ondřej Surý <ondrej@sury.org> | 2013-08-20 09:06:13 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2013-08-20 09:06:13 +0200 |
commit | bf4af35254bfff38b18848b86bb2bf7cf11085de (patch) | |
tree | 4357e214a9bbaea82dc6bd318cf2ddaa4c7ba01c /ext/gmp | |
parent | d837b4550418036e76d6adb3c7dad94b1e3a5a6a (diff) | |
download | php-bf4af35254bfff38b18848b86bb2bf7cf11085de.tar.gz |
New upstream version 5.5.2+dfsgupstream/5.5.2+dfsg
Diffstat (limited to 'ext/gmp')
-rw-r--r-- | ext/gmp/config.m4 | 2 | ||||
-rw-r--r-- | ext/gmp/gmp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/gmp/config.m4 b/ext/gmp/config.m4 index 9606b2f56..2140aaf70 100644 --- a/ext/gmp/config.m4 +++ b/ext/gmp/config.m4 @@ -3,7 +3,7 @@ dnl $Id$ dnl PHP_ARG_WITH(gmp, for GNU MP support, -[ --with-gmp[=DIR] Include GNU MP support]) +[ --with-gmp[=DIR] Include GNU MP support]) if test "$PHP_GMP" != "no"; then diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index f8c3a0773..e3a3563aa 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -1069,7 +1069,7 @@ ZEND_FUNCTION(gmp_powm) zval **base_arg, **exp_arg, **mod_arg; mpz_t *gmpnum_base, *gmpnum_exp, *gmpnum_mod, *gmpnum_result; int use_ui = 0; - int temp_base, temp_exp, temp_mod; + int temp_base = 0, temp_exp = 0, temp_mod; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZZ", &base_arg, &exp_arg, &mod_arg) == FAILURE){ return; |