summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index d9670a5a49..8ceca62500 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -795,7 +795,7 @@ try_again:
case IS_UNDEF:
case IS_NULL:
case IS_FALSE:
- return STR_EMPTY_ALLOC();
+ return ZSTR_EMPTY_ALLOC();
case IS_TRUE:
return zend_string_init("1", 1, 0);
case IS_RESOURCE: {
@@ -830,7 +830,7 @@ try_again:
zval_ptr_dtor(z);
}
zend_error(EG(exception) ? E_ERROR : E_RECOVERABLE_ERROR, "Object of class %s could not be converted to string", Z_OBJCE_P(op)->name->val);
- return STR_EMPTY_ALLOC();
+ return ZSTR_EMPTY_ALLOC();
}
case IS_REFERENCE:
op = Z_REFVAL_P(op);