@@ -26766,9 +26766,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_VAR_VAR_HANDLE
2676626766 opline->extended_value == ZEND_RETURNS_FUNCTION &&
2676726767 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
2676826768
26769- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
26770- variable_ptr = &EG(uninitialized_zval);
26771- }
26769+ variable_ptr = zend_wrong_assign_to_variable_reference(
26770+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
2677226771 } else {
2677326772 zend_assign_to_variable_reference(variable_ptr, value_ptr);
2677426773 }
@@ -29698,9 +29697,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_VAR_CV_HANDLER
2969829697 opline->extended_value == ZEND_RETURNS_FUNCTION &&
2969929698 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
2970029699
29701- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
29702- variable_ptr = &EG(uninitialized_zval);
29703- }
29700+ variable_ptr = zend_wrong_assign_to_variable_reference(
29701+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
2970429702 } else {
2970529703 zend_assign_to_variable_reference(variable_ptr, value_ptr);
2970629704 }
@@ -45451,9 +45449,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_CV_VAR_HANDLER
4545145449 opline->extended_value == ZEND_RETURNS_FUNCTION &&
4545245450 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
4545345451
45454- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
45455- variable_ptr = &EG(uninitialized_zval);
45456- }
45452+ variable_ptr = zend_wrong_assign_to_variable_reference(
45453+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
4545745454 } else {
4545845455 zend_assign_to_variable_reference(variable_ptr, value_ptr);
4545945456 }
@@ -49507,9 +49504,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_ASSIGN_REF_SPEC_CV_CV_HANDLER(
4950749504 opline->extended_value == ZEND_RETURNS_FUNCTION &&
4950849505 UNEXPECTED(!Z_ISREF_P(value_ptr))) {
4950949506
49510- if (UNEXPECTED(!zend_wrong_assign_to_variable_reference(variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC))) {
49511- variable_ptr = &EG(uninitialized_zval);
49512- }
49507+ variable_ptr = zend_wrong_assign_to_variable_reference(
49508+ variable_ptr, value_ptr OPLINE_CC EXECUTE_DATA_CC);
4951349509 } else {
4951449510 zend_assign_to_variable_reference(variable_ptr, value_ptr);
4951549511 }
0 commit comments