summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2013-10-29 20:07:34 +0100
committerNikita Popov <nikic@php.net>2013-10-29 20:07:34 +0100
commit647e0be64b4cdcc5c94aa245d4d876d193709287 (patch)
treeee186a1f3249d84ce76a6d5c201bfa8ade94b51d
parent82eca388d201aa39984521694c92f1955d646838 (diff)
downloadphp-git-647e0be64b4cdcc5c94aa245d4d876d193709287.tar.gz
Fix compile warning in GMP
-rw-r--r--ext/gmp/gmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
index 8b5c131e76..6b3dadf405 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -1363,7 +1363,7 @@ ZEND_FUNCTION(gmp_powm)
zval *base_arg, *exp_arg, *mod_arg;
mpz_ptr gmpnum_base, gmpnum_exp, gmpnum_mod, gmpnum_result;
int use_ui = 0;
- gmp_temp_t temp_base = {0}, temp_exp = {0}, temp_mod;
+ gmp_temp_t temp_base, temp_exp, temp_mod;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zzz", &base_arg, &exp_arg, &mod_arg) == FAILURE){
return;