From: Xinchen Hui Date: Sat, 21 Feb 2015 03:02:20 +0000 (+0800) Subject: Unused vars X-Git-Tag: PRE_PHP7_EREG_MYSQL_REMOVALS~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a724becc17afec0598d3d803da5ea30ead1eb46;p=php Unused vars --- diff --git a/ext/opcache/zend_accelerator_util_funcs.c b/ext/opcache/zend_accelerator_util_funcs.c index 2e7f0c8da5..ae6e8c8555 100644 --- a/ext/opcache/zend_accelerator_util_funcs.c +++ b/ext/opcache/zend_accelerator_util_funcs.c @@ -370,8 +370,6 @@ static void zend_hash_clone_methods(HashTable *ht, HashTable *source, zend_class uint idx; Bucket *p, *q; zend_ulong nIndex; - zend_class_entry *new_ce; - zend_function *new_prototype; zend_op_array *new_entry; ht->nTableSize = source->nTableSize; @@ -427,7 +425,6 @@ static void zend_hash_clone_prop_info(HashTable *ht, HashTable *source, zend_cla uint idx; Bucket *p, *q; zend_ulong nIndex; - zend_class_entry *new_ce; zend_property_info *prop_info; ht->nTableSize = source->nTableSize; @@ -494,8 +491,6 @@ static void zend_class_copy_ctor(zend_class_entry **pce) { zend_class_entry *ce = *pce; zend_class_entry *old_ce = ce; - zend_class_entry *new_ce; - zend_function *new_func; *pce = ce = ARENA_REALLOC(old_ce); ce->refcount = 1;