Initialize with length instead of 0 (and thanks Antony for finding)

This commit is contained in:
Matt Wilmas 2008-06-02 11:20:17 +00:00
parent e58b49fc4c
commit 0cc9f01212

View File

@ -2298,7 +2298,7 @@ PHP_FUNCTION(array_splice)
/* Don't create the array of removed elements if it's not going
* to be used; e.g. only removing and/or replacing elements */
if (return_value_used) {
int size = 0;
int size = length;
/* Clamp the offset.. */
if (offset > num_in) {