@@ -26942,9 +26942,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_VAR_VAR_HANDLE
2694226942 opline->extended_value == ZEND_RETURNS_FUNCTION &&
2694326943 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
2694426944
26945- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
26946- variable_ptr = &EG(uninitialized_zval);
26947- }
26945+ variable_ptr = zend_wrong_assign_to_variable_reference(
26946+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
2694826947 } else {
2694926948 zend_assign_to_variable_reference(variable_ptr, value_ptr);
2695026949 }
@@ -30171,9 +30170,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_VAR_CV_HANDLER
3017130170 opline->extended_value == ZEND_RETURNS_FUNCTION &&
3017230171 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
3017330172
30174- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
30175- variable_ptr = &EG(uninitialized_zval);
30176- }
30173+ variable_ptr = zend_wrong_assign_to_variable_reference(
30174+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
3017730175 } else {
3017830176 zend_assign_to_variable_reference(variable_ptr, value_ptr);
3017930177 }
@@ -45807,9 +45805,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_CV_VAR_HANDLER
4580745805 opline->extended_value == ZEND_RETURNS_FUNCTION &&
4580845806 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
4580945807
45810- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
45811- variable_ptr = &EG(uninitialized_zval);
45812- }
45808+ variable_ptr = zend_wrong_assign_to_variable_reference(
45809+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
4581345810 } else {
4581445811 zend_assign_to_variable_reference(variable_ptr, value_ptr);
4581545812 }
@@ -49870,9 +49867,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_CV_CV_HANDLER(
4987049867 opline->extended_value == ZEND_RETURNS_FUNCTION &&
4987149868 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
4987249869
49873- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
49874- variable_ptr = &EG(uninitialized_zval);
49875- }
49870+ variable_ptr = zend_wrong_assign_to_variable_reference(
49871+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
4987649872 } else {
4987749873 zend_assign_to_variable_reference(variable_ptr, value_ptr);
4987849874 }
0 commit comments