From 958a0bf03482f607ba8c0995759c2edaeda7658c Mon Sep 17 00:00:00 2001 From: Date: Thu, 2 Apr 2009 01:35:58 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 10 +++++ 2 files changed, 130 insertions(+) diff --git a/ChangeLog b/ChangeLog index 91aabff33a..38ac8af4d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,123 @@ +2009-04-01 Matt Wilmas + + * (PHP_5_2) + NEWS + ext/standard/string.c + ext/standard/tests/strings/bug47546.phpt: + MFH: Fixed bug #47560 (explode()'s limit parameter odd behaviour) by + reverting change for bug #47546 + + * (PHP_5_3) + NEWS + ext/standard/php_string.h + ext/standard/string.c + ext/standard/tests/strings/bug47546.phpt: + MFH: explode() stuff: + - Fixed bug #47560 (explode()'s limit parameter odd behaviour) by + reverting change for bug #47546 + - Changed int to long where needed (should fix memory errors from overflow + seen in bug #47854) + - Simplified logic a bit with limit and its default value + - php_explode_negative_limit(): removed safe_emalloc (not needed; plain + erealloc is used later) + - Moved declarations/allocation to optimize if the delimiter isn't found + - Changed ALLOC_STEP size for less realloc's (and maybe better memory + block alignment?) + + * ext/standard/php_string.h + ext/standard/string.c + ext/standard/tests/strings/bug47546.phpt: + explode() stuff: + - Fixed bug #47560 (explode()'s limit parameter odd behaviour) by + reverting change for bug #47546 + - Changed int to long where needed (should fix memory errors from overflow + seen in bug #47854) + - Simplified logic a bit with limit and its default value + - php_explode_negative_limit(): removed safe_emalloc (not needed; plain + erealloc is used later) + - Moved declarations/allocation to optimize if the delimiter isn't found + - Changed ALLOC_STEP size for less realloc's (and maybe better memory + block alignment?) + +2009-04-01 Felipe Pena + + * (PHP_5_2) + ZendEngine2/zend_alloc.c + ZendEngine2/zend_alloc.c: + - MFH: Fixed bug #47852 (Compilation failure in zend_alloc.c) (Matteo) + + * ZendEngine2/zend_alloc.c: + - Fixed bug #47852 (Compilation failure in zend_alloc.c) (Matteo) + +2009-04-01 Pierre-Alain Joye + + * ext/pdo_pgsql/config.w32: + - 8.3.x supports pqprepare + + * ext/pdo_pgsql/pgsql_driver.c: + - MFB: fix build when pqprepare does not exist + + * (PHP_5_3) + ext/pdo_pgsql/pgsql_driver.c: + - fix build when pqprepare does not exist + +2009-04-01 Takeshi Abe + + * (PHP_5_3) + ext/gd/libgd/gd_png.c: + MFH: + replaced static gdPngJmpbufStruct, which is afraid of being shared with + several threads, by a couple of auto variables. + + * ext/gd/libgd/gd_png.c: + replaced static gdPngJmpbufStruct, which is afraid of being shared with + several threads, by a couple of auto variables. + +2009-04-01 Alexey Zakhlestin + + * (PHP_5_3) + ext/pdo_sqlite/sqlite_statement.c: + MFH: reverted previous patch, using explicit cast instead + + * ext/pdo_sqlite/sqlite_statement.c: + reverted previous patch, using explicit cast instead + +2009-04-01 Ilia Alshanetsky + + * (PHP_5_3) + NEWS + ext/standard/string.c: + + Fixed bug #47856 (stristr() converts needle to lower-case). + +2009-04-01 Alexey Zakhlestin + + * (PHP_5_3) + ext/pdo_sqlite/sqlite_statement.c: + MFH: const pointer was used in non-const context + + * ext/pdo_sqlite/sqlite_statement.c: + const pointer was used in non-const context + +2009-04-01 Kalle Sommer Nielsen + + * ext/soap/php_packet_soap.c: + Fixed Windows build + + * (PHP_5_3) + win32/build/mkdist.php: + 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" warnings + * If file does not exist then dont try to copy it + + * win32/build/mkdist.php: + 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 not exist then dont try to copy it + 2009-03-31 Pierre-Alain Joye * ext/gd/php_gd.h: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 87e5ed83ac..4706228753 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,13 @@ +2009-04-01 Felipe Pena + + * (PHP_5_2) + zend_alloc.c + zend_alloc.c: + - MFH: Fixed bug #47852 (Compilation failure in zend_alloc.c) (Matteo) + + * zend_alloc.c: + - Fixed bug #47852 (Compilation failure in zend_alloc.c) (Matteo) + 2009-03-27 Arnaud Le Blanc * (PHP_5_3) -- 2.40.0