diff options
author | Marcus Boerger <helly@php.net> | 2006-07-17 21:11:33 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-07-17 21:11:33 +0000 |
commit | 34cfec253613f63c803cb34aab1533f73ae9e655 (patch) | |
tree | a8e3ca64fea4a5ceab9756b94498d88b20c2931f | |
parent | c0fcaa7acbc012f850a4a5836f36daeb527337c3 (diff) | |
download | php-git-34cfec253613f63c803cb34aab1533f73ae9e655.tar.gz |
- MFH Fix #38125 undefined reference to spl_dual_it_free_storage
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | ext/spl/spl_iterators.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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; |