diff options
author | Marcus Boerger <helly@php.net> | 2008-03-16 21:06:55 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2008-03-16 21:06:55 +0000 |
commit | af316021e8f69896cd0d246114962e48b973972f (patch) | |
tree | 7bf0e294155631040c03c6b76ab3b96dce967b94 /ext/spl/php_spl.c | |
parent | eb8f83a98e7fbfa206601fa5016cc211eb78e024 (diff) | |
download | php-git-af316021e8f69896cd0d246114962e48b973972f.tar.gz |
- Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
This is against php-re2c repository version 98
An older patch against version 97 is available under:
http://php.net/~helly/php-re2c-97-20080316.diff.txt
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 34741c0f5b..6687c601c1 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -238,7 +238,7 @@ static int spl_autoload(const char *class_name, const char * lc_name, int class_ zend_destroy_file_handle(&file_handle TSRMLS_CC); } else { new_op_array = NULL; - zend_file_handle_dtor(&file_handle); + zend_file_handle_dtor(&file_handle TSRMLS_CC); } if (new_op_array) { EG(return_value_ptr_ptr) = &result; |