diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2002-11-06 18:51:44 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2002-11-06 18:51:44 +0000 |
| commit | bab84eab34841f7eb99b486e127ac9d54d1ff86d (patch) | |
| tree | e0591c5019cd970e703f8b00531eb6bc4c65aaf1 | |
| parent | 78e2e69b23a6811f148f68fcabe41dedc9e29005 (diff) | |
| download | php-git-bab84eab34841f7eb99b486e127ac9d54d1ff86d.tar.gz | |
Fix ZTS build.
| -rw-r--r-- | Zend/zend_execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 6c32aa1ef9..b6f1d58524 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -322,7 +322,7 @@ static inline void zend_assign_to_object(znode *result, znode *op1, znode *op2, static inline void zend_assign_to_object_op(znode *result, znode *op1, znode *op2, zval *value, temp_variable *Ts, int (*binary_op)(zval *result, zval *op1, zval *op2 TSRMLS_DC) TSRMLS_DC) { - zval **object_ptr = get_obj_zval_ptr_ptr(op1, Ts, BP_VAR_W); + zval **object_ptr = get_obj_zval_ptr_ptr(op1, Ts, BP_VAR_W TSRMLS_CC); zval *object; zval *property = get_zval_ptr(op2, Ts, &EG(free_op2), BP_VAR_R); zval tmp; |
