ID: 12572
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Analyzed
Bug Type: Scripting Engine problem
Operating System: Redhat Linux 7.0
PHP Version: 4.0.6
New Comment:
Reproduced with PHP 4.1.0RC1
Previous Comments:
------------------------------------------------------------------------
[2001-08-05 01:21:24] [EMAIL PROTECTED]
sort() reindexes arrays of length > 1 at 0, but doesn't do
this for 1 element arrays. The following patch, fixes this
minor inconsistancy. Please review it carefully, my C is
rusty and I don't normally play with these files. It does
build and seem to run correctly for me, with limited testing.
-adam
Here is an example:
$array = array(2 => 'foo', 'bar');
sort($array);
print_r($array);
Array
(
[0] => bar
[1] => foo
)
But,
$array = array(2 => 'foo');
sort($array);
print_r($array);
Array
(
[2] => foo
)
--- zend_hash.c Sun Aug 5 01:17:22 2001
+++ /home/adam/zend_hash.c Sun Aug 5 00:54:21 2001
@@ -1097,6 +1097,13 @@
IS_CONSISTENT(ht);
if (ht->nNumOfElements <= 1) { /* Doesn't require sorting */
+
if (ht->nNumOfElements == 1 && renumber) { /* Renumber 1
element arrays to O */
+
p = ht->pListHead;
+
p->nKeyLength = 0;
+
p->h = 0;
+
ht->nNextFreeElement = 1;
+
zend_hash_rehash(ht);
+
}
return SUCCESS;
}
arTmp = (Bucket **) pemalloc(ht->nNumOfElements *
sizeof(Bucket *), ht->persistent);
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=12572&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]