ChangeLog update

This commit is contained in:
2009-04-02 01:35:58 +00:00
parent 5557b49982
commit 958a0bf034
2 changed files with 130 additions and 0 deletions

120
ChangeLog
View File

@ -1,3 +1,123 @@
2009-04-01 Matt Wilmas <php_lists@realplain.com>
* (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 <felipensp@gmail.com>
* (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 <pierre.dev@gmail.com>
* 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 <tabe@fixedpoint.jp>
* (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 <indeyets@gmail.com>
* (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 <ilia@prohost.org>
* (PHP_5_3)
NEWS
ext/standard/string.c:
Fixed bug #47856 (stristr() converts needle to lower-case).
2009-04-01 Alexey Zakhlestin <indeyets@gmail.com>
* (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 <kalle.php@gmail.com>
* 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 <pierre.dev@gmail.com>
* ext/gd/php_gd.h:

View File

@ -1,3 +1,13 @@
2009-04-01 Felipe Pena <felipensp@gmail.com>
* (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 <arnaud.lb@gmail.com>
* (PHP_5_3)