mirror of
https://github.com/php/php-src.git
synced 2026-04-13 11:02:55 +02:00
layout
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user