@@ -503,9 +503,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_leave_helper_SPEC(ZEND_OPCODE_
503
503
ZEND_VM_LEAVE();
504
504
} else if (ZEND_CALL_KIND_EX(call_info) == ZEND_CALL_NESTED_CODE) {
505
505
zend_detach_symbol_table(execute_data);
506
- if (EXPECTED(destroy_op_array(&EX(func)->op_array) != 0)) {
507
- efree_size(EX(func), sizeof(zend_op_array));
508
- }
506
+ destroy_op_array(&EX(func)->op_array);
507
+ efree_size(EX(func), sizeof(zend_op_array));
509
508
old_execute_data = execute_data;
510
509
execute_data = EG(current_execute_data) = EX(prev_execute_data);
511
510
zend_vm_stack_free_call_frame_ex(call_info, old_execute_data);
@@ -3670,7 +3669,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HAN
3670
3669
}
3671
3670
3672
3671
call->prev_execute_data = execute_data;
3673
- i_init_code_execute_data(call, new_op_array, return_value);
3672
+ i_init_code_execute_data(call, new_op_array, return_value);
3674
3673
if (EXPECTED(zend_execute_ex == execute_ex)) {
3675
3674
ZEND_VM_ENTER();
3676
3675
} else {
@@ -3679,9 +3678,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HAN
3679
3678
zend_vm_stack_free_call_frame(call);
3680
3679
}
3681
3680
3682
- if (EXPECTED(destroy_op_array(new_op_array) != 0)) {
3683
- efree_size(new_op_array, sizeof(zend_op_array));
3684
- }
3681
+ destroy_op_array(new_op_array);
3682
+ efree_size(new_op_array, sizeof(zend_op_array));
3685
3683
if (UNEXPECTED(EG(exception) != NULL)) {
3686
3684
zend_throw_exception_internal(NULL);
3687
3685
HANDLE_EXCEPTION();
@@ -29068,7 +29066,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLE
29068
29066
}
29069
29067
29070
29068
call->prev_execute_data = execute_data;
29071
- i_init_code_execute_data(call, new_op_array, return_value);
29069
+ i_init_code_execute_data(call, new_op_array, return_value);
29072
29070
if (EXPECTED(zend_execute_ex == execute_ex)) {
29073
29071
ZEND_VM_ENTER();
29074
29072
} else {
@@ -29077,9 +29075,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLE
29077
29075
zend_vm_stack_free_call_frame(call);
29078
29076
}
29079
29077
29080
- if (EXPECTED(destroy_op_array(new_op_array) != 0)) {
29081
- efree_size(new_op_array, sizeof(zend_op_array));
29082
- }
29078
+ destroy_op_array(new_op_array);
29079
+ efree_size(new_op_array, sizeof(zend_op_array));
29083
29080
if (UNEXPECTED(EG(exception) != NULL)) {
29084
29081
zend_throw_exception_internal(NULL);
29085
29082
HANDLE_EXCEPTION();
@@ -40480,7 +40477,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HA
40480
40477
}
40481
40478
40482
40479
call->prev_execute_data = execute_data;
40483
- i_init_code_execute_data(call, new_op_array, return_value);
40480
+ i_init_code_execute_data(call, new_op_array, return_value);
40484
40481
if (EXPECTED(zend_execute_ex == execute_ex)) {
40485
40482
ZEND_VM_ENTER();
40486
40483
} else {
@@ -40489,9 +40486,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HA
40489
40486
zend_vm_stack_free_call_frame(call);
40490
40487
}
40491
40488
40492
- if (EXPECTED(destroy_op_array(new_op_array) != 0)) {
40493
- efree_size(new_op_array, sizeof(zend_op_array));
40494
- }
40489
+ destroy_op_array(new_op_array);
40490
+ efree_size(new_op_array, sizeof(zend_op_array));
40495
40491
if (UNEXPECTED(EG(exception) != NULL)) {
40496
40492
zend_throw_exception_internal(NULL);
40497
40493
HANDLE_EXCEPTION();
0 commit comments