Re: [PHP-CVS] cvs: php-src /ext/ncurses ncurses_functions.c

2005-04-17 Thread Andrey Hristov
Hi Andi, last time I checked with 5.1 I was getting sth like resource(%d) of Unknown type Which leads me to think that the user may pass the resource to a function and it will greacefully go through zend_parse_parameters() and will fail probably during FETCH_RESOURCE with getting a FALSE ba

[PHP-CVS] cvs: php-src / NEWS /ext/gd gd.c

2005-04-17 Thread Derick Rethans
derick Sun Apr 17 06:17:05 2005 EDT Modified files: /php-srcNEWS /php-src/ext/gd gd.c Log: - Fixed bug #32735 (Compile error in GD extension). http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1873&r2=1.1874&ty=u Index: php-src/NEWS diff -u php-src/

[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS /ext/crack crack.c

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 09:27:18 2005 EDT Modified files: (Branch: PHP_4_3) /php-srcNEWS /php-src/ext/crack crack.c Log: - Fixed bug #32730 (ext/crack.c fails to compile with cracklib-2.8.3) http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.880&r2=1.1247.

[PHP-CVS] cvs: php-src /main php.h

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 09:37:21 2005 EDT Modified files: /php-src/main php.h Log: - Remove relic http://cvs.php.net/diff.php/php-src/main/php.h?r1=1.217&r2=1.218&ty=u Index: php-src/main/php.h diff -u php-src/main/php.h:1.217 php-src/main/php.h:1.218 --- php-s

[PHP-CVS] cvs: php-src(PHP_4_3) /main php.h

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 09:37:29 2005 EDT Modified files: (Branch: PHP_4_3) /php-src/main php.h Log: MFH: - Remove relic http://cvs.php.net/diff.php/php-src/main/php.h?r1=1.178.2.13&r2=1.178.2.14&ty=u Index: php-src/main/php.h diff -u php-src/main/php.h:1.178

[PHP-CVS] cvs: php-src(PHP_5_0) /main php.h

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 09:37:45 2005 EDT Modified files: (Branch: PHP_5_0) /php-src/main php.h Log: MFH: - Remove relic http://cvs.php.net/diff.php/php-src/main/php.h?r1=1.203.2.9&r2=1.203.2.10&ty=u Index: php-src/main/php.h diff -u php-src/main/php.h:1.203.2.9

[PHP-CVS] cvs: CVSROOT / avail

2005-04-17 Thread Rasmus Lerdorf
rasmus Sun Apr 17 11:35:40 2005 EDT Modified files: /CVSROOTavail Log: New accounts http://cvs.php.net/diff.php/CVSROOT/avail?r1=1.968&r2=1.969&ty=u Index: CVSROOT/avail diff -u CVSROOT/avail:1.968 CVSROOT/avail:1.969 --- CVSROOT/avail:1.968 Thu Apr 7 1

[PHP-CVS] cvs: php-src / NEWS

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 12:11:50 2005 EDT Modified files: /php-srcNEWS Log: - Removed unnecessary NEWS entry # There is no need to have this kind of entries in NEWS file # when the problem only exists in CVS for day or two.. http://cvs.php.net/diff.php/php

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

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 12:26:00 2005 EDT Modified files: /php-src/ext/ldap ldap.c Log: - Fixed bug #30819 (Better support for LDAP SASL bind) http://cvs.php.net/diff.php/php-src/ext/ldap/ldap.c?r1=1.156&r2=1.157&ty=u Index: php-src/ext/ldap/ldap.c diff -u php-src/

[PHP-CVS] cvs: php-src(PHP_5_0) / NEWS /ext/ldap config.w32 ldap.c

2005-04-17 Thread Jani Taskinen
sniper Sun Apr 17 12:26:31 2005 EDT Modified files: (Branch: PHP_5_0) /php-srcNEWS /php-src/ext/ldap config.w32 ldap.c Log: MFH: - Fixed bug #30819 (Better support for LDAP SASL bind) http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.327&r2=1.176

[PHP-CVS] cvs: php-src /ext/xmlreader php_xmlreader.c

2005-04-17 Thread Ilia Alshanetsky
iliaa Sun Apr 17 14:05:04 2005 EDT Modified files: /php-src/ext/xmlreader php_xmlreader.c Log: Added missing safe_mode & open_basedir checks. http://cvs.php.net/diff.php/php-src/ext/xmlreader/php_xmlreader.c?r1=1.9&r2=1.10&ty=u Index: php-src/ext/xmlre

Re: [PHP-CVS] cvs: php-src /ext/xmlreader php_xmlreader.c

2005-04-17 Thread Rob Richards
Why are the safe_mode checkes required here? As this uses PHP streams, the safe_mode and open_basedir checks should be done from the php_libxml_streams_IO_open_wrapper function which gets called from the libxml2 I/O callbacks. Are these checks somehow getting bypassed? Rob Ilia Alshanetsky wrot

[PHP-CVS] cvs: php-src /tests/classes property_exists.phpt

2005-04-17 Thread Marcus Boerger
helly Sun Apr 17 16:33:21 2005 EDT Modified files: /php-src/tests/classes property_exists.phpt Log: - Add more tests http://cvs.php.net/diff.php/php-src/tests/classes/property_exists.phpt?r1=1.2&r2=1.3&ty=u Index: php-src/tests/classes/property_exists.php

Re: [PHP-CVS] cvs: php-src /ext/xmlreader php_xmlreader.c

2005-04-17 Thread Ilia Alshanetsky
Hmm... you're right, will revert. Ilia Rob Richards wrote: Why are the safe_mode checkes required here? As this uses PHP streams, the safe_mode and open_basedir checks should be done from the php_libxml_streams_IO_open_wrapper function which gets called from the libxml2 I/O callbacks. Are these

[PHP-CVS] cvs: php-src /ext/xmlreader php_xmlreader.c

2005-04-17 Thread Ilia Alshanetsky
iliaa Sun Apr 17 22:43:43 2005 EDT Modified files: /php-src/ext/xmlreader php_xmlreader.c Log: Checks not needed, done by ext/libxml already. http://cvs.php.net/diff.php/php-src/ext/xmlreader/php_xmlreader.c?r1=1.10&r2=1.11&ty=u Index: php-src/ext/xmlr

[PHP-CVS] cvs: php-src /ext/com_dotnet com_dotnet.c com_persist.c

2005-04-17 Thread Ilia Alshanetsky
iliaa Sun Apr 17 23:04:16 2005 EDT Modified files: /php-src/ext/com_dotnet com_dotnet.c com_persist.c Log: removed unused vars. http://cvs.php.net/diff.php/php-src/ext/com_dotnet/com_dotnet.c?r1=1.12&r2=1.13&ty=u Index: php-src/ext/com_dotnet/com_dotnet

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

2005-04-17 Thread Georg Richter
georg Mon Apr 18 02:03:32 2005 EDT Modified files: /php-src/ext/mysqli mysqli.c Log: cursor support for 5.0.4 (STMT_ATTR_CURSOR_TYPE changed to enum) http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.63&r2=1.64&ty=u Index: php-src/ext/mysqli/mysq

[PHP-CVS] cvs: php-src(PHP_5_0) /ext/mysqli mysqli.c

2005-04-17 Thread Georg Richter
georg Mon Apr 18 02:03:59 2005 EDT Modified files: (Branch: PHP_5_0) /php-src/ext/mysqli mysqli.c Log: MFH: fix for cursors http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.43.2.13&r2=1.43.2.14&ty=u Index: php-src/ext/mysqli/mysqli.c diff -u php-