From: Marcus Boerger Date: Thu, 16 Jun 2005 17:29:29 +0000 (+0000) Subject: - Fix TSRM build X-Git-Tag: php-5.1.0b2~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f544adbb52f3ad14ac17067708d9bb2d079a9be;p=php - Fix TSRM build --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 9e79761f4f..0aeee7f5bc 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -1342,11 +1342,11 @@ ZEND_API opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode) } ZEND_API zval *zend_get_zval_ptr(znode *node, temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) { - return get_zval_ptr(node, Ts, should_free, type TSRMLS_CC); + return get_zval_ptr(node, Ts, should_free, type); } ZEND_API zval **zend_get_zval_ptr_ptr(znode *node, temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) { - return get_zval_ptr_ptr(node, Ts, should_free, type TSRMLS_CC); + return get_zval_ptr_ptr(node, Ts, should_free, type); } /*