summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;