diff options
author | Antony Dovgal <tony2001@php.net> | 2006-08-07 09:49:53 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-08-07 09:49:53 +0000 |
commit | 4b77e7f2f7a8d536c0a54ddb254b5f005b2a1ff8 (patch) | |
tree | 75770f389dbc92c78e6dbf00568a6ad5c4ed6644 | |
parent | fdf1ee39e4a26514de001289504c5b72bc84b4d8 (diff) | |
download | php-git-4b77e7f2f7a8d536c0a54ddb254b5f005b2a1ff8.tar.gz |
nuke unused variable
-rwxr-xr-x | ext/spl/php_spl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index a0c53310c0..cbe176caae 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -275,7 +275,6 @@ PHP_FUNCTION(spl_autoload) zend_op **original_opline_ptr = EG(opline_ptr); zend_op_array *original_active_op_array = EG(active_op_array); zend_function_state *original_function_state_ptr = EG(function_state_ptr); - zval err_mode; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &class_name, &class_name_len, &file_exts, &file_exts_len) == FAILURE) { RETURN_FALSE; |