Skip to content

Commit 552c06d

Browse files
committed
typo
1 parent b5b6176 commit 552c06d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Zend/zend_vm_def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3473,7 +3473,7 @@ ZEND_VM_C_LABEL(send_array):
34733473
int separate = 0;
34743474

34753475
/* 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++) {
34773477
if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->func, arg_num + 1)) {
34783478
separate = 1;
34793479
break;

Zend/zend_vm_execute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ static int ZEND_FASTCALL ZEND_SEND_ARRAY_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS)
886886
int separate = 0;
887887

888888
/* 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++) {
890890
if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->func, arg_num + 1)) {
891891
separate = 1;
892892
break;

0 commit comments

Comments
 (0)