From: Dmitry Stogov Date: Thu, 15 May 2014 08:34:04 +0000 (+0400) Subject: fixed refcounting X-Git-Tag: POST_PHPNG_MERGE~361^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88ba312808651be4d18275ed60e9cc4233cb572c;p=php fixed refcounting --- diff --git a/ext/soap/php_packet_soap.c b/ext/soap/php_packet_soap.c index 07bda29e5d..218dadbfc8 100644 --- a/ext/soap/php_packet_soap.c +++ b/ext/soap/php_packet_soap.c @@ -381,7 +381,7 @@ int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunction zend_hash_internal_pointer_reset(Z_ARRVAL_P(return_value)); tmp = zend_hash_get_current_data(Z_ARRVAL_P(return_value)); if (!Z_REFCOUNTED_P(return_value)) { - ZVAL_COPY_VALUE(return_value, tmp); + ZVAL_COPY(return_value, tmp); } else { zend_refcounted *garbage = Z_COUNTED_P(return_value); ZVAL_COPY(return_value, tmp);