From 88ba312808651be4d18275ed60e9cc4233cb572c Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 15 May 2014 12:34:04 +0400 Subject: [PATCH] fixed refcounting --- ext/soap/php_packet_soap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1