helly Mon Jul 17 21:13:33 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/spl spl_iterators.c /php-src NEWS Log: - MFH Fix #38125 undefined reference to spl_dual_it_free_storage http://cvs.php.net/viewvc.cgi/php-src/ext/spl/spl_iterators.c?r1=1.73.2.32&r2=1.73.2.33&diff_format=u Index: php-src/ext/spl/spl_iterators.c diff -u php-src/ext/spl/spl_iterators.c:1.73.2.32 php-src/ext/spl/spl_iterators.c:1.73.2.33 --- php-src/ext/spl/spl_iterators.c:1.73.2.32 Mon Jul 17 21:12:23 2006 +++ php-src/ext/spl/spl_iterators.c Mon Jul 17 21:13:32 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: spl_iterators.c,v 1.73.2.32 2006/07/17 21:12:23 helly Exp $ */ +/* $Id: spl_iterators.c,v 1.73.2.33 2006/07/17 21:13:32 helly Exp $ */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -1253,7 +1253,7 @@ } /* }}} */ /* {{{ 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; http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.560&r2=1.2027.2.561&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.560 php-src/NEWS:1.2027.2.561 --- php-src/NEWS:1.2027.2.560 Thu May 25 10:01:30 2006 +++ php-src/NEWS Mon Jul 17 21:13:33 2006 @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2006, PHP 5.1.5 +- Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus) - Fixed bug #37587 (var without attribute causes segfault). (Marcus) - Fixed bug #37576 (FastCGI env (cgi vars) table overflow). (Piotr) - Fixed bug #37496 (FastCGI output buffer overrun). (Piotr, Dmitry)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php