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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user