From 46792a9914cf0ab04cba01b9162c4954efafccc4 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 7 Sep 2015 15:14:26 +0200 Subject: [PATCH] remove unnecessary check as it's unrelated to the size pre calculation --- ext/opcache/zend_persist_calc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/opcache/zend_persist_calc.c b/ext/opcache/zend_persist_calc.c index 3b8356ae7a..d07e309faa 100644 --- a/ext/opcache/zend_persist_calc.c +++ b/ext/opcache/zend_persist_calc.c @@ -71,7 +71,6 @@ static void zend_hash_persist_calc(HashTable *ht, void (*pPersistElement)(zval * } } ADD_SIZE(hash_size * sizeof(uint32_t) + ht->nNumUsed * sizeof(Bucket)); - ZEND_ASSERT(((zend_uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ } else { ADD_SIZE(HT_USED_SIZE(ht)); } -- 2.49.0