summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-07-17 21:11:33 +0000
committerMarcus Boerger <helly@php.net>2006-07-17 21:11:33 +0000
commit34cfec253613f63c803cb34aab1533f73ae9e655 (patch)
treea8e3ca64fea4a5ceab9756b94498d88b20c2931f
parentc0fcaa7acbc012f850a4a5836f36daeb527337c3 (diff)
downloadphp-git-34cfec253613f63c803cb34aab1533f73ae9e655.tar.gz
- MFH Fix #38125 undefined reference to spl_dual_it_free_storage
-rw-r--r--NEWS1
-rwxr-xr-xext/spl/spl_iterators.c2
2 files changed, 2 insertions, 1 deletions
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;