1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

Unintialized variable fix from Joe Orton.

This commit is contained in:
Wez Furlong
2003-10-13 11:47:05 +00:00
parent 4c28ca442f
commit ef89c82c02
+1 -1
View File
@@ -311,7 +311,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) {