summaryrefslogtreecommitdiff
path: root/ext/spl/spl_array.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2007-03-24 16:28:53 +0000
committerMarcus Boerger <helly@php.net>2007-03-24 16:28:53 +0000
commiteceb7faee00864a519260fb89f916b8b59a721d5 (patch)
treef3b2d9cb2c82d6e31ee37c2a6200b5788767ac8a /ext/spl/spl_array.c
parentbc1f7356d70aae99bd909a98b80128d71cef35a2 (diff)
downloadphp-git-eceb7faee00864a519260fb89f916b8b59a721d5.tar.gz
- MFH Drop double variable declaration
Diffstat (limited to 'ext/spl/spl_array.c')
-rwxr-xr-xext/spl/spl_array.c1
1 files changed, 0 insertions, 1 deletions
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;