From 381adeadff3e76f66630f93d2fd45a843f47b6d1 Mon Sep 17 00:00:00 2001 From: Date: Fri, 30 Jul 2004 00:33:59 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 126 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 32 +++++++++++++ 2 files changed, 158 insertions(+) diff --git a/ChangeLog b/ChangeLog index a80909f92d..2968e50f1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,129 @@ +2004-07-29 Edin Kadribasic + + * ext/gettext/gettext.c: + Fixed bug #29264. Newer libintl redefines function names so all + PHP gettext function names become prefixed with libintl_ + + * (PHP_5_0) + NEWS + ext/informix/config.w32: + MFH: Fix informix compilation on Windows (bug #29340) + + * ext/informix/config.w32: + Fix compilation on Windows (bug #29340) + +2004-07-29 Timm Friebe + + * (PHP_5_0) + ext/sybase_ct/php_sybase_ct.c: + - MFH: + . Fixed bug #29064 (Exact numeric/decimal/money datatypes lose + precision) + . Fixed bug #27843 (sybase_query() triggers (spurious?) notices when + query is a stored procedure) + . Fixed multiple memory leaks with sybase_unbuffered_query() + . Changed sybase_query() to ignore store_results = false in buffering + mode, it would yield unpredictable results + . Fixed sybase_unbuffered_query() when used with store_results = false + . Changed sybase_fetch_object() to ignore second argument when passed + as NULL + . Made sybase_data_seek() error message more verbose + . Fixed memory leak in shutdown when not all rows where selected in an + unbuffered query + + * ext/sybase_ct/php_sybase_ct.c: + - Fixed bug #29064 (Exact numeric/decimal/money datatypes lose precision) + - Fixed bug #27843 (sybase_query() triggers (spurious?) notices when + query is a stored procedure) + - Fixed multiple memory leaks with sybase_unbuffered_query() + - Changed sybase_query() to ignore store_results = false in buffering + mode, it would yield unpredictable results + - Fixed sybase_unbuffered_query() when used with store_results = false + - Changed sybase_fetch_object() to ignore second argument when passed + as NULL + - Made sybase_data_seek() error message more verbose + - Fixed memory leak in shutdown when not all rows where selected in an + unbuffered query + +2004-07-29 Marcus Boerger + + * ZendEngine2/zend_hash.c: + - Increase performance of *sort() and some internal sort operations. + +2004-07-29 Sara Golemon + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_execute.c + ZendEngine2/zend_language_parser.y + ZendEngine2/zend_language_scanner.l + ZendEngine2/zend_opcode.c: + Revert goto opcode + + * ZendEngine2/zend_execute.c: + &tmp and label are the same thing, don't free it till we're done with it. + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_execute.c: + Plug some memory leaks and promote unknown label to E_ERROR. + If someone tries to jump to a non-existant label execution really + shouldn't try to carry on. + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_execute.c + ZendEngine2/zend_language_parser.y + ZendEngine2/zend_language_scanner.l + ZendEngine2/zend_opcode.c: + Add goto operator by popular request. + +2004-07-29 Wez Furlong + + * ext/com_dotnet/com_handlers.c + ext/com_dotnet/com_wrapper.c: + Fix my favourite call user func mistake + + * ext/standard/basic_functions.c: + Missing ifdef; thanks Tony + +2004-07-29 Christian Stocker + + * NEWS: + Remove News entry, which is already in 5.0 + +2004-07-29 Wez Furlong + + * ext/com_dotnet/com_wrapper.c: + Use the correct lengths when building the name -> dispid mapping + + * win32/globals.c: + Missing return statement + + * ext/standard/basic_functions.c + ext/standard/syslog.c + win32/globals.c + win32/php_win32_globals.h + win32/pwd.c + win32/time.c + win32/wsyslog.c: + Misc. win32 thread safety fixes. + +2004-07-29 Ilia Alshanetsky + + * (PHP_5_0) + NEWS + ext/standard/array.c: + MFH: Fixed but #29437 (Possible crash inside array_walk_recursive()). + + * ext/standard/array.c: + Fixed but #29437 (Possible crash inside array_walk_recursive()). + +2004-07-29 Wez Furlong + + * (PHP_5_0) + NEWS: + BFN + 2004-07-28 Wez Furlong * (PHP_5_0) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8edc250f51..2c87016b98 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,35 @@ +2004-07-29 Marcus Boerger + + * zend_hash.c: + - Increase performance of *sort() and some internal sort operations. + +2004-07-29 Sara Golemon + + * zend_compile.c + zend_compile.h + zend_execute.c + zend_language_parser.y + zend_language_scanner.l + zend_opcode.c: + Revert goto opcode + + * zend_execute.c: + &tmp and label are the same thing, don't free it till we're done with it. + + * zend_compile.c + zend_execute.c: + Plug some memory leaks and promote unknown label to E_ERROR. + If someone tries to jump to a non-existant label execution really + shouldn't try to carry on. + + * zend_compile.c + zend_compile.h + zend_execute.c + zend_language_parser.y + zend_language_scanner.l + zend_opcode.c: + Add goto operator by popular request. + 2004-07-28 Wez Furlong * zend_ini.c: -- 2.50.1