From: Dmitry Stogov Date: Thu, 15 May 2014 18:58:58 +0000 (+0400) Subject: Buffer has to be reallocated on each loop iteration X-Git-Tag: POST_PHPNG_MERGE~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0da988282b2c87facd264eaceed0a436b1694f7;p=php Buffer has to be reallocated on each loop iteration --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 72c1e34a02..0545bddf10 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -2954,7 +2954,8 @@ PHP_METHOD(SoapClient, __getFunctions) array_init(return_value); ZEND_HASH_FOREACH_PTR(&sdl->functions, function) { function_to_string(function, &buf); - add_next_index_str(return_value, buf.s); + add_next_index_stringl(return_value, buf.s->val, buf.s->len); + smart_str_free(&buf); } ZEND_HASH_FOREACH_END(); } }