summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-07-14 15:46:09 +0400
committerDmitry Stogov <dmitry@zend.com>2014-07-14 15:46:09 +0400
commitbcc677789c1832916af77994059873a30d145a72 (patch)
tree270bccd0abd5b34bc59fe16e9ed5c6ff51d18d7b
parentaf7cb1690781cb05cb25b2a30ee4e6d446d0e660 (diff)
downloadphp-git-bcc677789c1832916af77994059873a30d145a72.tar.gz
Fixed ZTS build
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index dadace0948..a4a9e8a1c9 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -2821,7 +2821,7 @@ static int zend_do_convert_defined(zend_op *init_opline, znode *result TSRMLS_DC
lc_name = STR_ALLOC(Z_STRLEN(CONSTANT(opline->op1.constant)), 0);
zend_str_tolower_copy(lc_name->val, Z_STRVAL(CONSTANT(opline->op1.constant)), Z_STRLEN(CONSTANT(opline->op1.constant)));
ZVAL_NEW_STR(&c, lc_name);
- zend_add_literal(CG(active_op_array), &c);
+ zend_add_literal(CG(active_op_array), &c TSRMLS_CC);
opline->result.var = get_temporary_variable(CG(active_op_array));
opline->result_type = IS_TMP_VAR;
GET_NODE(result, opline->result);