mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
MFZE1: Fix imbalance bug (Zeev).
This commit is contained in:
parent
18a3f085aa
commit
2697ce689d
1 changed files with 4 additions and 2 deletions
|
@ -112,8 +112,10 @@ static void _zend_is_inconsistent(HashTable *ht, char *file, int line)
|
|||
}
|
||||
|
||||
|
||||
#define HASH_UNPROTECT_RECURSION(ht) \
|
||||
(ht)->nApplyCount--;
|
||||
#define HASH_UNPROTECT_RECURSION(ht) \
|
||||
if ((ht)->bApplyProtection) { \
|
||||
(ht)->nApplyCount--; \
|
||||
}
|
||||
|
||||
|
||||
#define ZEND_HASH_IF_FULL_DO_RESIZE(ht) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue