1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 13:12:16 +02:00

Unused var

This commit is contained in:
Xinchen Hui
2015-03-05 23:09:58 +08:00
parent bb91bf83f9
commit 1ebdbdfd78

View File

@@ -174,7 +174,6 @@ static zend_always_inline void zend_hash_realloc(HashTable *ht, size_t new_size)
static void zend_hash_packed_grow(HashTable *ht)
{
size_t new_size;
HT_ASSERT(GC_REFCOUNT(ht) == 1);
if (ht->nTableSize >= HT_MAX_SIZE) {
zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (%zu * %zu + %zu)", ht->nTableSize * 2, sizeof(Bucket), sizeof(Bucket));