1
0
mirror of https://github.com/php/php-src.git synced 2026-04-06 23:53:30 +02:00

Fixed warning about uninitialized variable (actually, it doesn't have to be initialized).

This commit is contained in:
Dmitry Stogov
2013-02-15 18:06:48 +04:00
parent 6693f1854d
commit 2b6eede1d3

View File

@@ -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);