summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-08-24 04:18:22 +0000
committerFelipe Pena <felipe@php.net>2008-08-24 04:18:22 +0000
commitbe5df045405c9ab969fff2b4c183b833e2eae695 (patch)
tree0940c275af238c9434cb0e01dcb83c2629d8c643 /ext/spl
parent3ae6c7a978327c057f499c0f2ac7374973c6a0d2 (diff)
downloadphp-git-be5df045405c9ab969fff2b4c183b833e2eae695.tar.gz
- Removed unused variable
Diffstat (limited to 'ext/spl')
-rwxr-xr-xext/spl/php_spl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index 64bf651694..8d4c1f7935 100755
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -373,7 +373,6 @@ PHP_FUNCTION(spl_autoload_call)
ZVAL_ZSTRL(zclass_name, ZEND_STR_TYPE, class_name, class_name_len, 1);
if (SPL_G(autoload_functions)) {
int l_autoload_running = SPL_G(autoload_running);
- zval *exception = NULL;
SPL_G(autoload_running) = 1;
lc_name = zend_u_str_tolower_dup(ZEND_STR_TYPE, class_name, class_name_len);
zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &function_pos);