From: Sara Golemon Date: Mon, 12 Sep 2005 17:42:43 +0000 (+0000) Subject: Plug leak of 1/2 bytes when converting from string/unicode X-Git-Tag: RELEASE_0_9_0~230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87bcf776f729313f55fc41b5df140e330addf18c;p=php Plug leak of 1/2 bytes when converting from string/unicode --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index efe34c8118..b430e868eb 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -1156,6 +1156,7 @@ static void zend_fetch_dimension_address(temp_variable *result, zval **container SEPARATE_ZVAL(container_ptr); container = *container_ptr; } + zval_dtor(container); array_init(container); break; }