]> granicus.if.org Git - php/commitdiff
Fix ZTS builds by adding a missing TSRMLS_FETCH().
authorAdam Harvey <aharvey@php.net>
Tue, 19 Apr 2016 02:20:35 +0000 (19:20 -0700)
committerNikita Popov <nikic@php.net>
Wed, 20 Apr 2016 16:58:29 +0000 (18:58 +0200)
Zend/zend_compile.c

index b8aba65bcf3ee4faf9fa976a5905bb975d1eaea4..ef152a38f1be1761008a84a3cc9a1e2d5018a5c0 100644 (file)
@@ -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) {