From: Marcus Boerger Date: Sat, 24 Mar 2007 16:28:45 +0000 (+0000) Subject: - Drop double variable declaration X-Git-Tag: RELEASE_1_1_0~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=714e95d2e835d373bf4858adbc6e3ee309123c59;p=php - Drop double variable declaration --- diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index d6276612ef..8984e491d7 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -497,7 +497,6 @@ static int spl_array_has_dimension_ex(int check_inherited, zval *object, zval *o index = Z_LVAL_P(offset); } if (check_empty) { - zval **tmp; HashTable *ht = spl_array_get_hash_table(intern, 0 TSRMLS_CC); if (zend_hash_index_find(ht, index, (void **)&tmp) != FAILURE && zend_is_true(*tmp)) { return 1;