summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2016-04-18 19:20:35 -0700
committerNikita Popov <nikic@php.net>2016-04-20 18:58:29 +0200
commitc4f69b6dfd6a27767e36312f7cb8474458a13ca6 (patch)
tree470179119061c729256c0b1bec42882cd84ee81a
parentc02301b666f61e73da3ae73f712823cf64a9299d (diff)
downloadphp-git-c4f69b6dfd6a27767e36312f7cb8474458a13ca6.tar.gz
Fix ZTS builds by adding a missing TSRMLS_FETCH().
-rw-r--r--Zend/zend_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index b8aba65bcf..ef152a38f1 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -3637,6 +3637,7 @@ static zend_bool do_inherit_property_access_check(HashTable *target_ht, zend_pro
{
zend_property_info *child_info;
zend_class_entry *parent_ce = ce->parent;
+ TSRMLS_FETCH();
if (parent_info->flags & (ZEND_ACC_PRIVATE|ZEND_ACC_SHADOW)) {
if (zend_hash_quick_find(&ce->properties_info, hash_key->arKey, hash_key->nKeyLength, hash_key->h, (void **) &child_info)==SUCCESS) {