summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2003-06-12 15:11:11 +0000
committerAndrey Hristov <andrey@php.net>2003-06-12 15:11:11 +0000
commit2d4449caf9cc96084bcd5c3343c8f1b8cf495068 (patch)
tree5110b57de136d8aa2428562db370b8e76ef940e7 /ext/standard/array.c
parent792d15ae93039a42ad08f3b56f6f982093501695 (diff)
downloadphp-git-2d4449caf9cc96084bcd5c3343c8f1b8cf495068.tar.gz
silly bug
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r--ext/standard/array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index 6dc57b1f74..b6ec420ccb 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -3775,8 +3775,8 @@ PHP_FUNCTION(array_combine)
zval_add_ref(entry_values);
add_index_zval(return_value, Z_LVAL_PP(entry_keys), *entry_values);
}
- zend_hash_move_forward_ex(Z_ARRVAL_PP(entry_keys), &pos_keys);
- zend_hash_move_forward_ex(Z_ARRVAL_PP(entry_values), &pos_values);
+ zend_hash_move_forward_ex(Z_ARRVAL_P(keys), &pos_keys);
+ zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos_values);
}
}
/* }}} */