Browse Source

Do not assume array contains numeric values.

PEAR_1_4DEV
Ilia Alshanetsky 23 years ago
parent
commit
e49964fe99
  1. 2
      ext/standard/array.c

2
ext/standard/array.c

@ -3376,7 +3376,7 @@ PHP_FUNCTION(array_reduce)
result = *initial;
} else {
MAKE_STD_ZVAL(result);
ZVAL_LONG(result, 0);
ZVAL_NULL(result);
}
/* (zval **)input points to an element of argument stack

Loading…
Cancel
Save