summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS30
-rw-r--r--Zend/zend_API.h4
2 files changed, 16 insertions, 18 deletions
diff --git a/NEWS b/NEWS
index 5215dc645d..24a1ba8714 100644
--- a/NEWS
+++ b/NEWS
@@ -1,23 +1,28 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2013, PHP 5.3.23
-
?? ??? 2013, PHP 5.3.22
- Zend Engine:
- . Fixed bug #64023 (echo tries standard cast_object implementation before the
- one for the actual object; also fixed bug in SplFileInfo's cast_object).
- (Gustavo, Dmitry)
+ . Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes)
. Fixed bug #63899 (Use after scope error in zend_compile). (Laruence)
- . Fixed bug #63762 (Sigsegv when Exception::$trace is changed by user).
- (Johannes)
- . Fixed bug #63462 (Magic methods called twice for unset protected
- properties). (Stas)
- Core
. Fixed bug #63943 (Bad warning text from strpos() on empty needle).
(Laruence)
+- Date:
+ . Fixed bug #55397 (comparsion of incomplete DateTime causes SIGSEGV).
+ (Laruence, Derick)
+
+- FPM:
+ . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam)
+
+17 Jan 2013, PHP 5.3.21
+
+- Zend Engine:
+ . Fixed bug #63762 (Sigsegv when Exception::$trace is changed by user).
+ (Johannes)
+
- cURL extension:
. Fixed bug (segfault due to libcurl connection caching). (Pierrick)
. Fixed bug #63795 (CURL >= 7.28.0 no longer support value 1 for
@@ -27,13 +32,6 @@ PHP NEWS
. Fixed bug #55438 (Curlwapper is not sending http header randomly).
(phpnet@lostreality.org, Pierrick)
-- Date:
- . Fixed bug #55397 (comparsion of incomplete DateTime causes SIGSEGV).
- (Laruence, Derick)
-
-- FPM:
- . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam)
-
20 Dec 2012, PHP 5.3.20
- Zend Engine:
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 05170f287a..f6f2c46ab9 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -268,9 +268,9 @@ ZEND_API void zend_class_implements(zend_class_entry *class_entry TSRMLS_DC, int
ZEND_API int zend_register_class_alias_ex(const char *name, int name_len, zend_class_entry *ce TSRMLS_DC);
#define zend_register_class_alias(name, ce) \
- zend_register_class_alias_ex(name, sizeof(name)-1, ce TSRMLS_DC)
+ zend_register_class_alias_ex(name, sizeof(name)-1, ce TSRMLS_CC)
#define zend_register_ns_class_alias(ns, name, ce) \
- zend_register_class_alias_ex(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name))-1, ce TSRMLS_DC)
+ zend_register_class_alias_ex(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name))-1, ce TSRMLS_CC)
ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC);
ZEND_API int zend_disable_class(char *class_name, uint class_name_length TSRMLS_DC);