From 8809836586dfa19aaa95ceecafde1333f1f92e7e Mon Sep 17 00:00:00 2001 From: Date: Fri, 4 Apr 2003 01:30:57 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 210 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 41 ++++++++++ 2 files changed, 251 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5a7911ec5f..ee84242d5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,213 @@ +2003-04-03 Stig Bakken + + * pear/package-PEAR.xml: + - pear.in is renamed to pearcmd.php + + * pear/package-PEAR.xml + pear/scripts/.cvsignore + pear/scripts/pear.in + pear/scripts/pear_unices + pear/scripts/pearcmd.php: + - paj's last Windows install fixes + + * pear/scripts/pear.bat: + - use PHP_PEAR_* environment variables (paj) + + * pear/PEAR/Frontend/CLI.php: + - disable table borders in output to save width + + * pear/OS/Guess.php: + - windows bugfix + + * pear/PEAR.php: + - support both error codes and messages in the second parameter to + PEAR::isError() + +2003-04-03 Jani Taskinen + + * ext/gd/gd.c: + Use php_error_docref. + +2003-04-03 Stig Bakken + + * pear/PEAR/Registry.php: + - remove track_errors ini fiddling, was a PHP bug that should be fixed now + + * pear/PEAR/Common.php: + - initialize pkginfo with an empty provides array + +2003-04-03 Rasmus Lerdorf + + * ext/exif/exif.c: + MFB + +2003-04-03 Marcus Boerger + + * configure.in: + Check for flex version 2.5.4 + +2003-04-03 Sascha Schumann + + * (PHP_4_3) + TODO_SEGFAULTS: + one in socket_select + + * (PHP_4_3) + TODO_SEGFAULTS: + augment summary with fixes which predate the list + + * (PHP_4_3) + TODO_SEGFAULTS: + add chunk_split + + * (PHP_4_3) + TODO_SEGFAULTS: + another one fixed, a new one found + + * ext/gd/gd.c: + Fix segfaults in imagecreate/imagecreatetruecolor + + * (PHP_4_3) + TODO_SEGFAULTS: + fix + + * (PHP_4_3) + TODO_SEGFAULTS: + update regarding dbase extension + +2003-04-03 Jani Taskinen + + * main/output.c: + WS & CS fix + +2003-04-03 Sara Golemon + + * ext/standard/array.c: + Kludgy fix for floating point drift causing problems like + range(1.0,1.5,0.1) == array(1.0,1.1,1.2,1.3,1.4); + +2003-04-03 Sascha Schumann + + * (PHP_4_3) + TODO_SEGFAULTS: + Update - we purged the full list\! + + * main/output.c: + Add some checks and avoid passing invalid data to call_user_function_ex. + + Fixes some heap corruption and allocation of negative amounts of memory. + + * ext/standard/basic_functions.c: + Prevent entering of anything but arrays/strings in register_shutdown_func + + Noticed by: Jan Schneider + +2003-04-03 Rasmus Lerdorf + + * (PHP_4_3) + ext/exif/exif.c: + Clean up the parameter handling here + +2003-04-03 Jani Taskinen + + * NEWS: + reorder + +2003-04-03 Christian Stocker + + * NEWS: + new domxml_elem_set_attribute_node() should have gone into NEWS, but I + forgot.. + + * ext/domxml/php_domxml.c + ext/domxml/php_domxml.h: + - Added domxml_elem_set_attribute_node() method. (Rob Richards) + +2003-04-03 Georg Richter + + * ext/mysqli/mysqli_api.c: + fixed mysqli_prepare_result + + * ext/mysqli/tests/047.phpt: + fixed output + +2003-04-03 Derick Rethans + + * ext/standard/string.c + ext/standard/string.c: + - CS + +2003-04-03 Jani Taskinen + + * ext/bcmath/bcmath.c: + Another CS fix. + + * ext/standard/basic_functions.c: + CS fix + +2003-04-03 Moriyoshi Koizumi + + * (PHP_4_3) + TODO_SEGFAULTS: + Unable to reproduce.. + + * (PHP_4_3) + TODO_SEGFAULTS: + segfault busting news + + * (PHP_4_3) + ext/xml/xml.c: + MFH(r-1.117): fixed segfault in xml_parser_create() + + * ext/xml/xml.c: + Fixed segfault in xml_parser_create() + +2003-04-03 Ilia Alshanetsky + + * (PHP_4_3) + NEWS: + Bug fixing news. + + * (PHP_4_3) + ext/ftp/php_ftp.c: + Fixed bug #23004 (When ftp_close() is called, sent QUIT to the ftp server) + +2003-04-03 Moriyoshi Koizumi + + * (PHP_4_3) + main/output.c: + MFH(r-1.152): fixed memleak in output buffering facility + + * main/output.c: + Fixed memleak in output buffering facility + + * (PHP_4_3) + TODO_SEGFAULTS: + Removed i18n_convert() from the entries because that is an alias for + mb_convert_encoding() + +2003-04-03 Rasmus Lerdorf + + * (PHP_4_3) + TODO_SEGFAULTS: + Update + +2003-04-03 Moriyoshi Koizumi + + * (PHP_4_3) + ext/mbstring/php_mbregex.c: + MFH(r-1.38): fixed segfault in mb_ereg_match() + + * ext/mbstring/php_mbregex.c: + Fixed segfault in mb_ereg_match() + + * (PHP_4_3) + ext/mbstring/php_mbregex.c: + MFH(r-1.37): fixed lots of crashes in mbregex + + * ext/mbstring/php_mbregex.c: + Fixed lots of crashes in mbregex. + 2003-04-02 Rasmus Lerdorf * ext/bcmath/bcmath.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8fdcd27e31..30b9fc13ee 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,44 @@ +2003-04-03 Andrei Zmievski + + * zend_API.c: + Patch from Timm Friede for when EG(active_namespace) is NULL initially. + + * zend.c + zend_API.c + zend_compile.c: + Initialize all relevant zend_class_entry fields to avoid accidental + crashes. + +2003-04-03 Sebastian Bergmann + + * zend_list.c: + Leftover. + +2003-04-03 Sterling Hughes + + * zend_list.c + zend_list.h: + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + i will not commit before 12:00 + 2003-04-02 Andrei Zmievski * zend_API.c -- 2.40.0