From: Felipe Pena Date: Fri, 10 Dec 2010 11:33:35 +0000 (+0000) Subject: - Fixed ZTS build X-Git-Tag: php-5.3.6RC1~254 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=215917d71133b7aee85cd1438aaca0c2874e905a;p=php - Fixed ZTS build --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index c0150d4c69..40e3eed382 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -4353,7 +4353,7 @@ void zend_do_indirect_references(znode *result, const znode *num_references, zno fetch_simple_variable(result, variable, 1 TSRMLS_CC); /* there is a chance someone is accessing $this */ if (CG(active_op_array)->scope && CG(active_op_array)->this_var == -1) { - CG(active_op_array)->this_var = lookup_cv(CG(active_op_array), estrndup("this", sizeof("this")-1), sizeof("this")-1 TSRMLS_CC); + CG(active_op_array)->this_var = lookup_cv(CG(active_op_array), estrndup("this", sizeof("this")-1), sizeof("this")-1); } } /* }}} */