Re: [PHP-CVS] cvs: php-src /ext/standard uniqid.c

2005-12-27 Thread Steph Fox
- ok so I'm slowly catching up on weeklies (even tho' it's Christmas Day bleh) This doesn't make any sense to me, at all. #if defined(__CYGWIN__) zend_bool more_entropy = 1; #else zend_bool more_entropy = 0; #endif ... ... if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |sb, prefix,

[PHP-CVS] cvs: php-src(PHP_5_1) /ext/openssl/tests 001.phpt bug25614.phpt skipif.inc

2005-12-27 Thread Ilia Alshanetsky
iliaa Tue Dec 27 17:16:41 2005 EDT Removed files: (Branch: PHP_5_1) /php-src/ext/openssl/tests skipif.inc Modified files: /php-src/ext/openssl/tests 001.phpt bug25614.phpt Log: Improve skip checks

[PHP-CVS] cvs: php-src /ext/openssl/tests 001.phpt bug25614.phpt skipif.inc

2005-12-27 Thread Ilia Alshanetsky
iliaa Tue Dec 27 17:17:10 2005 EDT Removed files: /php-src/ext/openssl/tests skipif.inc Modified files: /php-src/ext/openssl/tests 001.phpt bug25614.phpt Log: MFB51: Improve skip checks

[PHP-CVS] cvs: php-src(PHP_5_1) / NEWS /ext/standard array.c /ext/standard/tests/array bug35821.phpt

2005-12-27 Thread Antony Dovgal
tony2001Tue Dec 27 22:32:01 2005 EDT Added files: (Branch: PHP_5_1) /php-src/ext/standard/tests/array bug35821.phpt Modified files: /php-srcNEWS /php-src/ext/standard array.c Log: fix #35821 (array_map() segfaults

[PHP-CVS] cvs: php-src /ext/standard array.c

2005-12-27 Thread Antony Dovgal
tony2001Tue Dec 27 22:33:40 2005 EDT Modified files: /php-src/ext/standard array.c Log: MF51: fix #35821 (array_map() segfaults when exception is throwed from the callback)

[PHP-CVS] cvs: php-src /ext/standard/tests/array bug35821.phpt

2005-12-27 Thread Antony Dovgal
tony2001Tue Dec 27 22:35:18 2005 EDT Modified files: /php-src/ext/standard/tests/array bug35821.phpt Log: add test for #35821 http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/tests/array/bug35821.phpt?r1=1.1r2=1.2diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/standard array.c

2005-12-27 Thread Marcus Boerger
Hello Antony, that looks pretty wrong (actually was wrong before already). The code should read: if (zend_call_function(fci, fci_cache TSRMLS_CC) != SUCCESS || !result) { or like this: if (zend_call_function(fci, fci_cache TSRMLS_CC) == FAILURE || !result) { best regards marcus Tuesday,

[PHP-CVS] cvs: php-src(PHP_5_1) /ext/standard array.c

2005-12-27 Thread Antony Dovgal
tony2001Tue Dec 27 23:26:55 2005 EDT Modified files: (Branch: PHP_5_1) /php-src/ext/standard array.c Log: tweak the fix http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/array.c?r1=1.308.2.14r2=1.308.2.15diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard array.c

2005-12-27 Thread Antony Dovgal
tony2001Tue Dec 27 23:27:02 2005 EDT Modified files: /php-src/ext/standard array.c Log: tweak the fix http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/array.c?r1=1.334r2=1.335diff_format=u Index: php-src/ext/standard/array.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/standard array.c

2005-12-27 Thread Antony Dovgal
On 28.12.2005 02:12, Marcus Boerger wrote: Hello Antony, that looks pretty wrong (actually was wrong before already). The code should read: if (zend_call_function(fci, fci_cache TSRMLS_CC) != SUCCESS || !result) { or like this: if (zend_call_function(fci, fci_cache TSRMLS_CC) == FAILURE