From: Nikita Popov Date: Tue, 29 Oct 2013 19:07:34 +0000 (+0100) Subject: Fix compile warning in GMP X-Git-Tag: php-5.6.0alpha1~221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=647e0be64b4cdcc5c94aa245d4d876d193709287;p=php Fix compile warning in GMP --- 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;