Skip to content

Commit 161c378

Browse files
committed
Revert "Fixed bug #74878"
This reverts commit 9069734.
1 parent 5369006 commit 161c378

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

NEWS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ PHP NEWS
99
unserialize). (Nikita)
1010
. Fixed bug #74819 (wddx_deserialize() heap out-of-bound read via
1111
php_parse_date()). (Derick)
12-
. Fixed bug #74878 (Data race in ZTS builds). (Nikita)
1312
. Fixed bug #49649 (unserialize() doesn't handle changes in property
1413
visibility). (pmmaga)
1514

Zend/zend_API.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3742,10 +3742,6 @@ ZEND_API int zend_declare_property_ex(zend_class_entry *ce, zend_string *name, z
37423742
break;
37433743
}
37443744
}
3745-
3746-
/* Must be interned to avoid ZTS data races */
3747-
name = zend_new_interned_string(zend_string_copy(name));
3748-
37493745
if (access_type & ZEND_ACC_PUBLIC) {
37503746
property_info->name = zend_string_copy(name);
37513747
} else if (access_type & ZEND_ACC_PRIVATE) {

0 commit comments

Comments
 (0)