[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/ext/mysqli/mysqli_nonapi.c trunk/ext/mysqli/mysqli_nonapi.c

2010-10-01 Thread Ulf Wendel
uw Fri, 01 Oct 2010 08:54:16 + Revision: http://svn.php.net/viewvc?view=revisionrevision=303911 Log: Fix leak with persistent connections when using mysqli.default_host is used Changed paths: U

[PHP-CVS] svn: /php/php-src/trunk/ NEWS UPGRADING ext/standard/basic_functions.c

2010-10-01 Thread Kalle Sommer Nielsen
kalleFri, 01 Oct 2010 09:18:44 + Revision: http://svn.php.net/viewvc?view=revisionrevision=303912 Log: * Added PHP_RAND_MAX and PHP_MT_RAND_MAX constants * Deprecated getrandmax() and mt_getrandmax() in favour of the new constants # We should promote

Re: [PHP-CVS] svn: /php/php-src/trunk/ NEWS UPGRADING ext/standard/basic_functions.c

2010-10-01 Thread Pierre Joye
On Fri, Oct 1, 2010 at 11:18 AM, Kalle Sommer Nielsen ka...@php.net wrote: kalle                                    Fri, 01 Oct 2010 09:18:44 + Revision: http://svn.php.net/viewvc?view=revisionrevision=303912 Log: * Added PHP_RAND_MAX and PHP_MT_RAND_MAX constants * Deprecated

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/NEWS branches/PHP_5_2/Zend/tests/bug52879.phpt branches/PHP_5_2/Zend/zend_object_handlers.c branches/PHP_5_3/NEWS branches/PHP_5_3/Zend/tests/bug52879.php

2010-10-01 Thread Dmitry Stogov
dmitry Fri, 01 Oct 2010 09:49:20 + Revision: http://svn.php.net/viewvc?view=revisionrevision=303913 Log: Fixed bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early). (mail_ben_schmidt at yahoo dot com dot au, Dmitry)

Re: [PHP-CVS] svn: /php/php-src/trunk/ NEWS UPGRADING ext/standard/basic_functions.c

2010-10-01 Thread Kalle Sommer Nielsen
What is the reasoning behind that? It could be possible that the max/min has to be defined at runtime at some point. Define at runtime? The values those functions expose are from compile time constants. I do not see why we need a function call to get a statically defined value. Also, there is

Re: [PHP-CVS] svn: /php/php-src/trunk/ NEWS UPGRADING ext/standard/basic_functions.c

2010-10-01 Thread Pierre Joye
On Fri, Oct 1, 2010 at 12:08 PM, Kalle Sommer Nielsen ka...@php.net wrote: What is the reasoning behind that? It could be possible that the max/min has to be defined at runtime at some point. Define at runtime? 'possible', 'at some point' (new RNG implementation). In any case, I don't see

[PHP-CVS] svn: /php/php-src/trunk/ Zend/tests/bug52940.phpt Zend/zend_execute_API.c ext/standard/tests/array/array_map_variation19.phpt ext/standard/tests/general_functions/call_user_func_array_variat

2010-10-01 Thread Dmitry Stogov
dmitry Fri, 01 Oct 2010 11:53:04 + Revision: http://svn.php.net/viewvc?view=revisionrevision=303919 Log: Fixed bug #52940 (call_user_func_array still allows call-time pass-by-reference). (cataphr...@php.net) Bug: http://bugs.php.net/52940 (Assigned)