summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2018-09-16 17:12:44 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-09-16 17:16:26 +0200
commitdfa166e7ed28479b2d979fa3318c669732969d4d (patch)
tree3c6c23f1942d5e22356851d34688ac91a49e7b6b /Zend/zend_operators.c
parent25685942fae4896ee2384cfb34c023b262f4d3af (diff)
downloadphp-git-dfa166e7ed28479b2d979fa3318c669732969d4d.tar.gz
Remove unused ZEND_FILE_LINE in i_zval_ptr_dtor
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 1999cf9c25..745ee86be8 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1821,7 +1821,7 @@ ZEND_API int ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2) /
if (UNEXPECTED(Z_STRLEN_P(op1) == 0)) {
if (EXPECTED(result != op2)) {
if (result == orig_op1) {
- i_zval_ptr_dtor(result ZEND_FILE_LINE_CC);
+ i_zval_ptr_dtor(result);
}
ZVAL_COPY(result, op2);
}
@@ -1852,7 +1852,7 @@ ZEND_API int ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2) /
result_str = zend_string_alloc(result_len, 0);
memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len);
if (result == orig_op1) {
- i_zval_ptr_dtor(result ZEND_FILE_LINE_CC);
+ i_zval_ptr_dtor(result);
}
}