From 2b6eede1d3e2fa7151a5cb07c20cf66504e6e066 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 15 Feb 2013 18:06:48 +0400 Subject: [PATCH] Fixed warning about uninitialized variable (actually, it doesn't have to be initialized). --- zend_accelerator_util_funcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0