summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-10-13 11:46:36 +0000
committerWez Furlong <wez@php.net>2003-10-13 11:46:36 +0000
commitc35810c203fa76d8face97bfa1b82f6e58dfea96 (patch)
treea75ba5c5d8c1a773ba3a32519f57cb65e5d9eda9
parent42ae98d7a21343fb884985f5d2d3b5b37f831238 (diff)
downloadphp-git-c35810c203fa76d8face97bfa1b82f6e58dfea96.tar.gz
unintialized variable.
Patch by Joe Orton
-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 4ae71cae86..d35f33a5e2 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -312,7 +312,7 @@ static inline void gmp_zval_binary_ui_op2_ex(zval *return_value, zval **a_arg, z
mpz_t *gmpnum_a, *gmpnum_b, *gmpnum_result1, *gmpnum_result2;
zval r;
int use_ui=0;
- unsigned long long_result;
+ unsigned long long_result = 0;
FETCH_GMP_ZVAL(gmpnum_a, a_arg);
if(gmp_ui_op && Z_TYPE_PP(b_arg) == IS_LONG && Z_LVAL_PP(b_arg) >= 0) {