From: Marcus Boerger Date: Mon, 17 Jul 2006 21:11:33 +0000 (+0000) Subject: - MFH Fix #38125 undefined reference to spl_dual_it_free_storage X-Git-Tag: php-5.2.0RC1~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34cfec253613f63c803cb34aab1533f73ae9e655;p=php - MFH Fix #38125 undefined reference to spl_dual_it_free_storage --- diff --git a/NEWS b/NEWS index 6b5b34b6a8..1f25c727f4 100644 --- a/NEWS +++ b/NEWS @@ -87,6 +87,7 @@ PHP NEWS - Fixed memory leaks in openssl streams context options. (Pierre) - Fixed handling of extremely long paths inside tempnam() function. (Ilia) +- Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus) - Fixed bug #38086 (stream_copy_to_stream() returns 0 when maxlen is bigger than the actual length). (Tony) - Fixed bug #38072 (boolean arg for mysqli_autocommit() is always true on diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index b62e404f3a..27396ba73e 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -1477,7 +1477,7 @@ SPL_METHOD(RecursiveRegexIterator, getChildren) #endif /* {{{ spl_dual_it_free_storage */ -static inline void spl_dual_it_free_storage(void *_object TSRMLS_DC) +static void spl_dual_it_free_storage(void *_object TSRMLS_DC) { spl_dual_it_object *object = (spl_dual_it_object *)_object;