From: Adam Harvey Date: Tue, 19 Apr 2016 02:20:35 +0000 (-0700) Subject: Fix ZTS builds by adding a missing TSRMLS_FETCH(). X-Git-Tag: php-7.0.7RC1~87^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4f69b6dfd6a27767e36312f7cb8474458a13ca6;p=php Fix ZTS builds by adding a missing TSRMLS_FETCH(). --- 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) {