1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 11:02:55 +02:00
This commit is contained in:
Zeev Suraski
2001-07-13 12:08:32 +00:00
parent 7b7e72d1d2
commit f63367bf16

View File

@@ -535,11 +535,13 @@ ZEND_API void zend_hash_reverse_destroy(HashTable *ht)
while (1) {
p = ht->pListTail;
if (! p)
if (!p) {
break;
}
q = p->pListLast;
if (q)
if (q) {
q->pListNext = NULL;
}
ht->pListTail = q;
if (ht->pDestructor) {