MFZE1: Fix imbalance bug (Zeev).

This commit is contained in:
Sebastian Bergmann 2002-04-19 16:43:27 +00:00
parent 18a3f085aa
commit 2697ce689d

View file

@ -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) \