From: Date: Wed, 8 Jun 2005 05:39:00 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.0.1b1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79ca149b75753afa1954aa5812077e2de6664eb9;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 70433a2375..f00a8c343e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -130,6 +130,138 @@ ZendEngine2/tests/bug33243.phpt: Fixed bug #33243 (ze1_compatibility_mode does not work as expected) +2005-06-07 Jani Taskinen + + * scripts/Makefile.frag + scripts/phpize.in: + - Fix paths when using --libdir and --includedir configure options + + * ext/standard/tests/array/bug31213.phpt: + - It is nice to close the script with ?>.. + +2005-06-07 Dmitry Stogov + + * (PHP_5_0) + NEWS + ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_compile.h + ZendEngine2/zend_language_scanner.l + ZendEngine2/zend_language_scanner.l: + Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when + called via STDIN) + +2005-06-07 Jani Taskinen + + * configure.in + ZendEngine2/Zend.m4: + -Moved --disable-zend-memory-manager where it belongs + + * acinclude.m4 + ZendEngine2/acinclude.m4 + ext/sqlite/config.m4: + - Show "none" when nothing is found + +2005-06-07 Dmitry Stogov + + * ext/sqlite/sqlite.c + ext/sqlite/sqlite.c: + Fixed memory allocation bugs. Probably this patch should fix bug #31725. + +2005-06-07 Ilia Alshanetsky + + * ZendEngine2/zend_objects.c: + Fixed ZTS build. + +2005-06-07 Derick Rethans + + * (PHP_4_4) + configure.in + configure.in + Zend/zend_alloc.h + ZendEngine2/zend_alloc.h + ext/standard/info.c + ext/standard/info.c: + - MFH: Added the --disable-zend-memory-manager switch to disable the Zend + memory manager. + + * configure.in + ZendEngine2/zend_alloc.h + ext/standard/info.c: + - Added the --disable-zend-memory-manager switch to disable the Zend memory + manager. + + * NEWS: + - Not sure why this wasn't committed... + +2005-06-07 Dmitry Stogov + + * ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_builtin_functions.c: + Fixed memory leak in debug_print_backtrace() + +2005-06-07 Jani Taskinen + + * ext/mysql/config.m4 + ext/mysqli/config.m4: + - Allow doing --with-mysql --with-mysqli (no mysql libs are bundled atm) + - Make sure MYSQL_DIR is empty. + +2005-06-07 Dmitry Stogov + + * (PHP_4_4) + Zend/zend_execute.c + ZendEngine2/zend_execute.c + ZendEngine2/zend_execute.c: + fixed memory leak in bug #28972 ([] operator overflow treatment is + incorrect), not the bug itself. + +2005-06-07 Derick Rethans + + * (PHP_5_0) + ZendEngine2/zend_execute.c + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/zend_vm_opcodes.h: + - MF44: Problems with user defined error handler and references + + * (PHP_4_4) + NEWS + Zend/zend_execute.c: + - Fixed bug #32685, #29423 (Segfault when using assignment by reference + within + function). + +2005-06-07 Dmitry Stogov + + * (PHP_4_4) + Zend/zend_compile.c + Zend/zend_execute.c + Zend/zend_language_parser.y: + Fixed memory corruptions when using references in a wrong way. + Backport $a =& func(); patch. + +2005-06-07 Derick Rethans + + * (PHP_5_0) + main/streams/php_streams_int.h: + - MFH: Don't crash when compiled with the zend memory manager disabled. + +2005-06-07 Dmitry Stogov + + * ZendEngine2/tests/bug33243.phpt + ZendEngine2/tests/bug33243.phpt: + + file bug33243.phpt was initially added on branch PHP_5_0. + + * (PHP_5_0) + NEWS + ZendEngine2/zend_objects.c + ZendEngine2/zend_objects.c + ZendEngine2/tests/bug33243.phpt: + Fixed bug #33243 (ze1_compatibility_mode does not work as expected) + 2005-06-06 Wez Furlong * ext/posix/config.m4 diff --git a/Zend/ChangeLog b/Zend/ChangeLog index bf6db171ec..002a7c4b79 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -65,6 +65,73 @@ file bug33243.phpt was initially added on branch PHP_5_0. +2005-06-07 Dmitry Stogov + + * zend_compile.c + zend_compile.c + zend_compile.h + zend_compile.h + zend_language_scanner.l + zend_language_scanner.l: + Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when + called via STDIN) + +2005-06-07 Jani Taskinen + + * Zend.m4: + -Moved --disable-zend-memory-manager where it belongs + + * acinclude.m4: + - Show "none" when nothing is found + +2005-06-07 Ilia Alshanetsky + + * zend_objects.c: + Fixed ZTS build. + +2005-06-07 Derick Rethans + + * (PHP_5_0) + zend_alloc.h: + - MFH: Added the --disable-zend-memory-manager switch to disable the Zend + memory manager. + + * zend_alloc.h: + - Added the --disable-zend-memory-manager switch to disable the Zend memory + manager. + +2005-06-07 Dmitry Stogov + + * zend_builtin_functions.c + zend_builtin_functions.c: + Fixed memory leak in debug_print_backtrace() + + * zend_execute.c + zend_execute.c: + fixed memory leak in bug #28972 ([] operator overflow treatment is + incorrect), not the bug itself. + +2005-06-07 Derick Rethans + + * (PHP_5_0) + zend_execute.c + zend_vm_def.h + zend_vm_execute.h + zend_vm_opcodes.h: + - MF44: Problems with user defined error handler and references + +2005-06-07 Dmitry Stogov + + * zend_objects.c + zend_objects.c + tests/bug33243.phpt: + Fixed bug #33243 (ze1_compatibility_mode does not work as expected) + + * tests/bug33243.phpt + tests/bug33243.phpt: + + file bug33243.phpt was initially added on branch PHP_5_0. + 2005-06-06 Derick Rethans * zend_vm_def.h