summaryrefslogtreecommitdiff
path: root/Zend/zend_variables.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-05-28 13:09:33 +0300
committerDmitry Stogov <dmitry@zend.com>2018-05-28 13:09:33 +0300
commit925f05dd1a35eafa71eb29abb69cdfc31a23a75d (patch)
treeea0f774d1b03ebd7bafd95b2abef8fa023b3d8e7 /Zend/zend_variables.c
parent8582e53430f12ce36f621d034a40d10ea01061fc (diff)
downloadphp-git-925f05dd1a35eafa71eb29abb69cdfc31a23a75d.tar.gz
Added missing debug arguments
Diffstat (limited to 'Zend/zend_variables.c')
-rw-r--r--Zend/zend_variables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c
index f92a500dbd..7f0e818fcc 100644
--- a/Zend/zend_variables.c
+++ b/Zend/zend_variables.c
@@ -44,7 +44,7 @@ static void ZEND_FASTCALL zend_ast_ref_destroy_wrapper(zend_ast_ref *ast ZEND_FI
# define zend_ast_ref_destroy_wrapper zend_ast_ref_destroy
#endif
-typedef void (ZEND_FASTCALL *zend_zval_dtor_func_t)(zend_refcounted *p);
+typedef void (ZEND_FASTCALL *zend_zval_dtor_func_t)(zend_refcounted *p ZEND_FILE_LINE_DC);
static const zend_zval_dtor_func_t zend_zval_dtor_func[] = {
/* IS_UNDEF */ (zend_zval_dtor_func_t)zend_empty_destroy,
@@ -64,7 +64,7 @@ static const zend_zval_dtor_func_t zend_zval_dtor_func[] = {
ZEND_API void ZEND_FASTCALL _zval_dtor_func(zend_refcounted *p ZEND_FILE_LINE_DC)
{
ZEND_ASSERT(GC_TYPE(p) <= IS_CONSTANT_AST);
- zend_zval_dtor_func[GC_TYPE(p)](p);
+ zend_zval_dtor_func[GC_TYPE(p)](p ZEND_FILE_LINE_RELAY_CC);
}
static void ZEND_FASTCALL zend_string_destroy(zend_string *str ZEND_FILE_LINE_DC)