From: Marcus Boerger Date: Sat, 24 Mar 2007 16:28:53 +0000 (+0000) Subject: - MFH Drop double variable declaration X-Git-Tag: php-5.2.2RC1~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eceb7faee00864a519260fb89f916b8b59a721d5;p=php - MFH Drop double variable declaration --- diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index fec74f57f9..924cc39847 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -492,7 +492,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;