[PHP-CVS] cvs: php-src(PHP_5_3) /win32/build mkdist.php

2009-04-01 Thread Kalle Sommer Nielsen
kalle Wed Apr 1 09:21:31 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/buildmkdist.php Log: MFH: Fixed a few warnings from copy(): * If $item is empty then skip to next entry, this fixes the "The first argument cannot be a directory" warn

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

2009-04-01 Thread Kalle Sommer Nielsen
kalle Wed Apr 1 09:38:42 2009 UTC Modified files: /php-src/ext/soap php_packet_soap.c Log: Fixed Windows build http://cvs.php.net/viewvc.cgi/php-src/ext/soap/php_packet_soap.c?r1=1.56&r2=1.57&diff_format=u Index: php-src/ext/soap/php_packet_soap.c diff -u p

[PHP-CVS] cvs: php-src /win32/build mkdist.php

2009-04-01 Thread Kalle Sommer Nielsen
kalle Wed Apr 1 09:20:35 2009 UTC Modified files: /php-src/win32/buildmkdist.php Log: Fixed a few warnings from copy(): * If $item is empty then skip to next entry, this fixes the "The first argument cannot be a directory" warnings * If file does no

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

2009-04-01 Thread Alexey Zakhlestin
indeyetsWed Apr 1 11:31:54 2009 UTC Modified files: /php-src/ext/pdo_sqlite sqlite_statement.c Log: const pointer was used in non-const context http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_sqlite/sqlite_statement.c?r1=1.29&r2=1.30&diff_format=u Ind

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/pdo_sqlite sqlite_statement.c

2009-04-01 Thread Alexey Zakhlestin
indeyetsWed Apr 1 11:32:14 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/pdo_sqlite sqlite_statement.c Log: MFH: const pointer was used in non-const context http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_sqlite/sqlite_statement.c?r1=1.18.2.4

[PHP-CVS] Re: cvs: php-src /ext/pdo_sqlite sqlite_statement.c

2009-04-01 Thread Scott MacVicar
It's valid to discard the const qualifier, add_assoc_string runs estrndup to take a copy of the return value anyway. You've also made the code less readable and introduced a memory leak for str. So unless I've missed something can you revert this please. Scott Alexey Zakhlestin wrote: > indeyet

[PHP-CVS] cvs: php-src(PHP_5_3) / NEWS /ext/standard string.c

2009-04-01 Thread Ilia Alshanetsky
iliaa Wed Apr 1 14:00:39 2009 UTC Modified files: (Branch: PHP_5_3) /php-srcNEWS /php-src/ext/standard string.c Log: Fixed bug #47856 (stristr() converts needle to lower-case). http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.965.

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

2009-04-01 Thread Alexey Zakhlestin
indeyetsWed Apr 1 14:34:21 2009 UTC Modified files: /php-src/ext/pdo_sqlite sqlite_statement.c Log: reverted previous patch, using explicit cast instead http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_sqlite/sqlite_statement.c?r1=1.30&r2=1.31&diff_for

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/pdo_sqlite sqlite_statement.c

2009-04-01 Thread Alexey Zakhlestin
indeyetsWed Apr 1 14:35:24 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/pdo_sqlite sqlite_statement.c Log: MFH: reverted previous patch, using explicit cast instead http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_sqlite/sqlite_statement.c?r1

[PHP-CVS] Re: cvs: php-src /ext/pdo_sqlite sqlite_statement.c

2009-04-01 Thread Alexey Zakhlestin
2009/4/1 Scott MacVicar : > It's valid to discard the const qualifier, add_assoc_string runs > estrndup to take a copy of the return value anyway. > > You've also made the code less readable and introduced a memory leak for > str. > > So unless I've missed something can you revert this please. don

Re: [PHP-CVS] cvs: php-src /ext/date php_date.c /ext/libxml libxml.c /ext/soap soap.c /ext/standard string.c var_unserializer.c var_unserializer.re ZendEngine2 zend_constants.c zend_hash.c zend_ob

2009-04-01 Thread Derick Rethans
On Thu, 26 Mar 2009, Felipe Pena wrote: > felipeThu Mar 26 22:16:48 2009 UTC > > Modified files: > /ZendEngine2 zend_constants.c zend_hash.c zend_object_handlers.c > zend_operators.c > /php-src/ext/date php_date.c Please, keep

Re: [PHP-CVS] cvs: php-src /ext/date php_date.c /ext/libxml libxml.c /ext/soap soap.c /ext/standard string.c var_unserializer.c var_unserializer.re ZendEngine2 zend_constants.c zend_hash.c zend_ob

2009-04-01 Thread Felipe Pena
Please, keep all the branches in sync, and also merge that change to PHP 5.2 and PHP 5.3 if needed. I don't see what to sync, almost all the variables removed are related to the dropped UG() stuff. The change in php_date.c was just for sync with 5.3, non related to UG()... -- PHP CVS Mailing

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

2009-04-01 Thread Takeshi Abe
tabeWed Apr 1 16:05:17 2009 UTC Modified files: /php-src/ext/gd/libgd gd_png.c Log: replaced static gdPngJmpbufStruct, which is afraid of being shared with several threads, by a couple of auto variables. http://cvs.php.net/viewvc.cgi/php-src/ext/

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/gd/libgd gd_png.c

2009-04-01 Thread Takeshi Abe
tabeWed Apr 1 16:06:56 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/gd/libgd gd_png.c Log: MFH: replaced static gdPngJmpbufStruct, which is afraid of being shared with several threads, by a couple of auto variables. http://cvs.php.net

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/pdo_pgsql pgsql_driver.c

2009-04-01 Thread Pierre-Alain Joye
pajoye Wed Apr 1 16:13:33 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/pdo_pgsql pgsql_driver.c Log: - fix build when pqprepare does not exist http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_pgsql/pgsql_driver.c?r1=1.53.2.14.2.9.2.5&r2=1.53.2.14.2

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

2009-04-01 Thread Pierre-Alain Joye
pajoye Wed Apr 1 16:14:50 2009 UTC Modified files: /php-src/ext/pdo_pgsql pgsql_driver.c Log: - MFB: fix build when pqprepare does not exist http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_pgsql/pgsql_driver.c?r1=1.72&r2=1.73&diff_format=u Index: php-src/ex

[PHP-CVS] cvs: php-src /ext/pdo_pgsql config.w32

2009-04-01 Thread Pierre-Alain Joye
pajoye Wed Apr 1 16:16:20 2009 UTC Modified files: /php-src/ext/pdo_pgsql config.w32 Log: - 8.3.x supports pqprepare http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_pgsql/config.w32?r1=1.9&r2=1.10&diff_format=u Index: php-src/ext/pdo_pgsql/config.w32 diff -

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/pdo_pgsql config.w32

2009-04-01 Thread Pierre-Alain Joye
pajoye Wed Apr 1 16:16:49 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/pdo_pgsql config.w32 Log: - MFH: 8.3.x supports pqprepare http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_pgsql/config.w32?r1=1.4.2.1.2.3.2.2&r2=1.4.2.1.2.3.2.3&diff_format=u I

[PHP-CVS] cvs: php-src /ext/standard php_string.h string.c /ext/standard/tests/strings bug47546.phpt

2009-04-01 Thread Matt Wilmas
mattwil Wed Apr 1 17:04:17 2009 UTC Removed files: /php-src/ext/standard/tests/strings bug47546.phpt Modified files: /php-src/ext/standard php_string.h string.c Log: explode() stuff: - Fixed bug #47560 (explode()'s limit parameter od

[PHP-CVS] cvs: php-src(PHP_5_3) / NEWS /ext/standard php_string.h string.c /ext/standard/tests/strings bug47546.phpt

2009-04-01 Thread Matt Wilmas
mattwil Wed Apr 1 17:05:37 2009 UTC Removed files: (Branch: PHP_5_3) /php-src/ext/standard/tests/strings bug47546.phpt Modified files: /php-srcNEWS /php-src/ext/standard php_string.h string.c Log: MFH: explode() stuff: - Fixe

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/standard string.c /ext/standard/tests/strings bug47546.phpt

2009-04-01 Thread Matt Wilmas
mattwil Wed Apr 1 17:07:47 2009 UTC Removed files: (Branch: PHP_5_2) /php-src/ext/standard/tests/strings bug47546.phpt Modified files: /php-srcNEWS /php-src/ext/standard string.c Log: MFH: Fixed bug #47560 (explode()'s limit pa

[PHP-CVS] cvs: win-installer / GenPHPInstaller.wxs.php

2009-04-01 Thread John Mertic
jmertic Wed Apr 1 19:47:32 2009 UTC Modified files: /win-installer GenPHPInstaller.wxs.php Log: Fix check for correct php.ini to work for 5.2 and 5.3+ install builds. http://cvs.php.net/viewvc.cgi/win-installer/GenPHPInstaller.wxs.php?r1=1.12&r2=1.13&diff_

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

2009-04-01 Thread Kalle Sommer Nielsen
kalle Thu Apr 2 05:16:55 2009 UTC Modified files: /php-src/ext/standard scanf.c Log: We dont need to escape % here, it just generates a compiler warning http://cvs.php.net/viewvc.cgi/php-src/ext/standard/scanf.c?r1=1.47&r2=1.48&diff_format=u Index: php-

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

2009-04-01 Thread Kalle Sommer Nielsen
kalle Thu Apr 2 05:17:36 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard scanf.c Log: MFH: We dont need to escape % here, it just generates a compiler warning http://cvs.php.net/viewvc.cgi/php-src/ext/standard/scanf.c?r1=1.31.2.2.2.5.2