summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Zend/zend_variables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h
index 5128016107..5de10f8fdb 100644
--- a/Zend/zend_variables.h
+++ b/Zend/zend_variables.h
@@ -32,7 +32,7 @@ static inline void _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC)
if (zvalue->type <= IS_BOOL) {
return;
}
- _zval_dtor_func(zvalue ZEND_FILE_LINE_CC);
+ _zval_dtor_func(zvalue ZEND_FILE_LINE_RELAY_CC);
}
ZEND_API void _zval_copy_ctor_func(zval *zvalue ZEND_FILE_LINE_DC);
@@ -42,7 +42,7 @@ static inline void _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC)
if (zvalue->type <= IS_BOOL) {
return;
}
- _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC);
+ _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_RELAY_CC);
}