summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-06-06 14:56:42 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-06-06 14:56:42 +0200
commit7780ba9660248f7caf492c2dc8b4febb08bbb966 (patch)
tree8ccdc9ef26cef80e0204b0c383dcb04185cbb3f3 /Zend/zend_execute.c
parent741468d145dced618456ad4c4877571083eac3b2 (diff)
downloadphp-git-7780ba9660248f7caf492c2dc8b4febb08bbb966.tar.gz
Try to fix Windows build
Diffstat (limited to 'Zend/zend_execute.c')
-rw-r--r--Zend/zend_execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c
index 5a5b8e0ad1..d666d6af80 100644
--- a/Zend/zend_execute.c
+++ b/Zend/zend_execute.c
@@ -585,7 +585,7 @@ static inline void zend_assign_to_variable_reference(zval *variable_ptr, zval *v
ZVAL_REF(variable_ptr, ref);
}
-static zend_never_inline zval* zend_assign_to_typed_property_reference(zend_property_info *prop_info, zval *prop, zval *value_ptr)
+static zend_never_inline zval* zend_assign_to_typed_property_reference(zend_property_info *prop_info, zval *prop, zval *value_ptr EXECUTE_DATA_DC)
{
if (!zend_verify_prop_assignable_by_ref(prop_info, value_ptr, EX_USES_STRICT_TYPES())) {
return &EG(uninitialized_zval);
@@ -2830,7 +2830,7 @@ static zend_always_inline void zend_assign_to_property_reference(zval *container
}
if (UNEXPECTED(prop_info)) {
- variable_ptr = zend_assign_to_typed_property_reference(prop_info, variable_ptr, value_ptr);
+ variable_ptr = zend_assign_to_typed_property_reference(prop_info, variable_ptr, value_ptr EXECUTE_DATA_CC);
} else {
zend_assign_to_variable_reference(variable_ptr, value_ptr);
}