1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00

ChangeLog update

This commit is contained in:
2005-06-10 05:32:48 +00:00
parent 6cc74b0e39
commit 3ff7178126
2 changed files with 141 additions and 0 deletions
+87
View File
@@ -1,3 +1,90 @@
2005-06-09 Stanislav Malyshev <stas@zend.com>
* NEWS
NEWS:
* ZendEngine2/zend_compile.c
ZendEngine2/zend_compile.h
ZendEngine2/zend_object_handlers.c
ZendEngine2/zend_reflection_api.c
ZendEngine2/tests/bug29689.phpt:
MF50: fix #29689 and more private property problems
* ZendEngine2/tests/bug33277.phpt:
add test for this TBF bug
* (PHP_5_0)
NEWS:
RIP abstrace private
* ZendEngine2/zend_compile.c:
disallow abstrace private methods
* (PHP_5_0)
ZendEngine2/zend_compile.c:
Disallow abstract privae methods
* (PHP_5_0)
ZendEngine2/zend_compile.c
ZendEngine2/zend_compile.h
ZendEngine2/zend_object_handlers.c
ZendEngine2/zend_reflection_api.c
ZendEngine2/tests/bug29689.phpt:
fix #29689 and more private property problems
2005-06-09 Dmitry Stogov <dmitry@zend.com>
* ZendEngine2/zend.c
ZendEngine2/zend.c
ZendEngine2/zend_execute_API.c
ZendEngine2/zend_execute_API.c:
Fixed double call to php_stream_close() on compiler errors
2005-06-09 Stanislav Malyshev <stas@zend.com>
* ZendEngine2/tests/bug33277.phpt
ZendEngine2/tests/bug33277.phpt:
file bug33277.phpt was initially added on branch PHP_5_0.
2005-06-09 Ilia Alshanetsky <ilia@prohost.org>
* ext/bz2/bz2.c:
Fixed compiler warning.
2005-06-09 Wez Furlong <wez.php@thebrainroom.net>
* main/main.c:
hmm, backing out this change, as it seems to cause problems with user-space
streams and filters (the ZE needs to close them before it blows away the
user-space code.
Noticed by Dmitry. Still need to find out how to avoid double-closing
streams.
2005-06-09 Dmitry Stogov <dmitry@zend.com>
* (PHP_5_0)
NEWS
Zend/zend.c
ZendEngine2/zend.c
ZendEngine2/zend.c
tests/lang/bug25922.phpt
tests/lang/bug25922.phpt
tests/lang/bug25922.phpt:
Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may
result in seg fault)
* ZendEngine2/zend_language_scanner.l
ZendEngine2/zend_language_scanner.l:
Fixed bug (Crash on Windows and ZTS) that was introduced with fix for bug
#26456
* ext/standard/user_filters.c
ext/standard/user_filters.c:
Fixed reference counting and probable crash on fclose() or shutdown
2005-06-08 Ilia Alshanetsky <ilia@prohost.org>
* (PHP_5_0)
+54
View File
@@ -1,3 +1,57 @@
2005-06-09 Stanislav Malyshev <stas@zend.com>
* zend_compile.c
zend_compile.h
zend_object_handlers.c
zend_reflection_api.c
tests/bug29689.phpt:
MF50: fix #29689 and more private property problems
* tests/bug33277.phpt:
add test for this TBF bug
* zend_compile.c:
disallow abstrace private methods
* (PHP_5_0)
zend_compile.c:
Disallow abstract privae methods
* (PHP_5_0)
zend_compile.c
zend_compile.h
zend_object_handlers.c
zend_reflection_api.c
tests/bug29689.phpt:
fix #29689 and more private property problems
2005-06-09 Dmitry Stogov <dmitry@zend.com>
* zend.c
zend.c
zend_execute_API.c
zend_execute_API.c:
Fixed double call to php_stream_close() on compiler errors
2005-06-09 Stanislav Malyshev <stas@zend.com>
* tests/bug33277.phpt
tests/bug33277.phpt:
file bug33277.phpt was initially added on branch PHP_5_0.
2005-06-09 Dmitry Stogov <dmitry@zend.com>
* zend.c
zend.c:
Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may
result in seg fault)
* zend_language_scanner.l
zend_language_scanner.l:
Fixed bug (Crash on Windows and ZTS) that was introduced with fix for bug
#26456
2005-06-08 Dmitry Stogov <dmitry@zend.com>
* (PHP_5_0)