diff --git a/ChangeLog b/ChangeLog index 3681af854cced..0b3a5953484f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,85 @@ +2005-02-07 Rasmus Lerdorf + + * ext/fam/fam.c + ext/fam/php_fam.h + ext/hwapi/hwapi.cpp + ext/hwapi/php_hwapi.h + ext/mono/php_mono.c + ext/msession/msession.c + ext/msession/php_msession.h + ext/ncurses/ncurses.c + ext/ncurses/php_ncurses.h: + Get rid of more useless RINIT/RSHUTDOWN calls + +2005-02-07 Ilia Alshanetsky + + * (PHP_4_3) + NEWS + NEWS + ext/sysvmsg/sysvmsg.c + ext/sysvmsg/sysvmsg.c: + MFH: Fixed bug #31527 (crash in msg_send() when non-string is stored + without + being serialized). + + * ext/sysvmsg/sysvmsg.c: + Fixed bug #31527 (crash in msg_send() when non-string is stored without + being serialized). + +2005-02-07 Rasmus Lerdorf + + * ext/xml/xml.c: + No reason to call empty RINIT, RSHUTDOWN and MSHUTDOWN functions here + +2005-02-07 Dmitry Stogov + + * ZendEngine2/zend_compile.c: + Fixed bug introduced with foreach() optimization patch + + * ZendEngine2/zend_compile.c: + Fixed FE_RESET/FE_FETCH bug. + Now FE_RESET instruction takes jump-address from itself, not from the + following FE_FETCH instruction. + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_language_parser.y + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/zend_vm_opcodes.h: + foreash($a as $key => $val) optimization + Removed temorary array creation on each iteration. + +2005-02-07 Marcus Boerger + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_language_parser.y: + - Remove part of the cleanup which causes a problem with unnormal code + like tests/lang/040.phpt + + * tests/lang/040.phpt: + - Add new test + +2005-02-07 Antony Dovgal + + * ext/filepro/filepro.c + ext/filepro/php_filepro.h: + fix leaks on shutdown + fix leaks appearing when trying to open several "databases" + +2005-02-07 Jani Taskinen + + * (PHP_4_3) + NEWS + NEWS + configure.in + configure.in: + MFH: - Fixed bug #31858 (--disable-cli does not force --without-pear) + + * configure.in: + - Fixed bug #31858 (--disable-cli does not force --without-pear) + 2005-02-06 Zeev Suraski * (PHP_5_0) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index b692aa9617770..0af848c755e76 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,30 @@ +2005-02-07 Dmitry Stogov + + * zend_compile.c: + Fixed bug introduced with foreach() optimization patch + + * zend_compile.c: + Fixed FE_RESET/FE_FETCH bug. + Now FE_RESET instruction takes jump-address from itself, not from the + following FE_FETCH instruction. + + * zend_compile.c + zend_compile.h + zend_language_parser.y + zend_vm_def.h + zend_vm_execute.h + zend_vm_opcodes.h: + foreash($a as $key => $val) optimization + Removed temorary array creation on each iteration. + +2005-02-07 Marcus Boerger + + * zend_compile.c + zend_compile.h + zend_language_parser.y: + - Remove part of the cleanup which causes a problem with unnormal code + like tests/lang/040.phpt + 2005-02-06 Zeev Suraski * (PHP_5_0)