summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2000-08-13 18:00:50 +0000
committerStanislav Malyshev <stas@php.net>2000-08-13 18:00:50 +0000
commit5090b1e8d5d3a3dc2afcb418d059520e8b9dd528 (patch)
tree35d04f58ed639d32ca9e59f9f817b67be3c15dad /Zend/zend.c
parent93acbedce8afa8f77478eea30985e89efcdc61d1 (diff)
downloadphp-git-5090b1e8d5d3a3dc2afcb418d059520e8b9dd528.tar.gz
Fix zend_fiel_handle handling. Should fix URL include
and various opened_path inconsistencies.
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index 5a12267e9c..f18beea9f4 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -707,6 +707,7 @@ ZEND_API int zend_execute_scripts(int type CLS_DC ELS_DC, int file_count, ...)
continue;
}
EG(active_op_array) = zend_compile_file(file_handle CLS_CC);
+ zend_destroy_file_handle(file_handle CLS_CC);
if (EG(active_op_array)) {
zend_execute(EG(active_op_array) ELS_CC);
zval_ptr_dtor(EG(return_value_ptr_ptr));