From: Dmitry Stogov Date: Fri, 15 Feb 2013 14:06:48 +0000 (+0400) Subject: Fixed warning about uninitialized variable (actually, it doesn't have to be initialized). X-Git-Tag: php-5.5.0beta1~42^2~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b6eede1d3e2fa7151a5cb07c20cf66504e6e066;p=php Fixed warning about uninitialized variable (actually, it doesn't have to be initialized). --- diff --git a/zend_accelerator_util_funcs.c b/zend_accelerator_util_funcs.c index c41080fbd3..a234461405 100644 --- a/zend_accelerator_util_funcs.c +++ b/zend_accelerator_util_funcs.c @@ -166,7 +166,7 @@ static void zend_destroy_property_info(zend_property_info *property_info) static inline zval* zend_clone_zval(zval *src, int bind TSRMLS_DC) { - zval *ret, **ret_ptr; + zval *ret, **ret_ptr = NULL; if (!bind) { ALLOC_ZVAL(ret);