Browse Source

MFZE1

experimental/new_apache_hooks
Zeev Suraski 24 years ago
parent
commit
b66561c44a
  1. 6
      Zend/zend_execute.c

6
Zend/zend_execute.c

@ -2673,7 +2673,11 @@ send_by_ref:
file_handle.free_filename = 0;
if (file_handle.handle.fp) {
if (!opened_path || zend_hash_add(&EG(included_files), opened_path, strlen(opened_path)+1, (void *)&dummy, sizeof(int), NULL)==SUCCESS) {
if( !opened_path ) {
opened_path = file_handle.opened_path = estrdup(inc_filename->value.str.val);
}
if (zend_hash_add(&EG(included_files), opened_path, strlen(opened_path)+1, (void *)&dummy, sizeof(int), NULL)==SUCCESS) {
new_op_array = zend_compile_file(&file_handle, (EX(opline)->op2.u.constant.value.lval==ZEND_INCLUDE_ONCE?ZEND_INCLUDE:ZEND_REQUIRE) TSRMLS_CC);
zend_destroy_file_handle(&file_handle TSRMLS_CC);
opened_path = NULL; /* zend_destroy_file_handle() already frees it */

Loading…
Cancel
Save