mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
parent
5369006edf
commit
161c378cc8
2 changed files with 0 additions and 5 deletions
1
NEWS
1
NEWS
|
@ -9,7 +9,6 @@ PHP NEWS
|
|||
unserialize). (Nikita)
|
||||
. Fixed bug #74819 (wddx_deserialize() heap out-of-bound read via
|
||||
php_parse_date()). (Derick)
|
||||
. Fixed bug #74878 (Data race in ZTS builds). (Nikita)
|
||||
. Fixed bug #49649 (unserialize() doesn't handle changes in property
|
||||
visibility). (pmmaga)
|
||||
|
||||
|
|
|
@ -3742,10 +3742,6 @@ ZEND_API int zend_declare_property_ex(zend_class_entry *ce, zend_string *name, z
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Must be interned to avoid ZTS data races */
|
||||
name = zend_new_interned_string(zend_string_copy(name));
|
||||
|
||||
if (access_type & ZEND_ACC_PUBLIC) {
|
||||
property_info->name = zend_string_copy(name);
|
||||
} else if (access_type & ZEND_ACC_PRIVATE) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue