From: Andrey Hristov Date: Thu, 12 Jun 2003 15:11:11 +0000 (+0000) Subject: silly bug X-Git-Tag: RELEASE_1_0_2~303 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d4449caf9cc96084bcd5c3343c8f1b8cf495068;p=php silly bug --- 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); } } /* }}} */