File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3473,7 +3473,7 @@ ZEND_VM_C_LABEL(send_array):
3473
3473
int separate = 0 ;
3474
3474
3475
3475
/* check if any of arguments are going to be passed by reference */
3476
- for (arg_num = 0 ; arg_num < zend_hash_num_elements (ht ); arg_num ) {
3476
+ for (arg_num = 0 ; arg_num < zend_hash_num_elements (ht ); arg_num ++ ) {
3477
3477
if (ARG_SHOULD_BE_SENT_BY_REF (EX (call )-> func , arg_num + 1 )) {
3478
3478
separate = 1 ;
3479
3479
break ;
Original file line number Diff line number Diff line change @@ -886,7 +886,7 @@ static int ZEND_FASTCALL ZEND_SEND_ARRAY_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS)
886
886
int separate = 0;
887
887
888
888
/* check if any of arguments are going to be passed by reference */
889
- for (arg_num = 0; arg_num < zend_hash_num_elements(ht); arg_num) {
889
+ for (arg_num = 0; arg_num < zend_hash_num_elements(ht); arg_num++ ) {
890
890
if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->func, arg_num + 1)) {
891
891
separate = 1;
892
892
break;
You can’t perform that action at this time.
0 commit comments