From: Pierre Joye Date: Wed, 1 Dec 2010 16:48:53 +0000 (+0000) Subject: - fix ts build X-Git-Tag: php-5.4.0alpha1~191^2~577 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e72e27eecc3e3e299ac46b5aa7420d9a1b30d4ba;p=php - fix ts build --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 30f8f6d5a1..5656b2dedc 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -5545,7 +5545,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); + CG(active_op_array)->this_var = lookup_cv(CG(active_op_array), estrndup("this", sizeof("this")-1), sizeof("this")-1 TSRMLS_CC); } } /* }}} */