diff options
author | Xinchen Hui <laruence@gmail.com> | 2019-12-25 15:27:10 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2019-12-25 15:27:10 +0800 |
commit | 4c6e170c576ca92b7015eabe4ea6ac32383639d6 (patch) | |
tree | 2ea9ab1e0d7458ea01b00e4cc32b795cc0380e5c /ext/libxml | |
parent | d8ad2f4695ebd6dc2d4e668d9baeac1c071791a6 (diff) | |
download | php-git-4c6e170c576ca92b7015eabe4ea6ac32383639d6.tar.gz |
Revert "Fixed bug #79029 (Use After Free's in XMLReader / XMLWriter)"
This reverts commit d8ad2f4695ebd6dc2d4e668d9baeac1c071791a6.
Diffstat (limited to 'ext/libxml')
-rw-r--r-- | ext/libxml/libxml.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index 837cc7ad98..efccf0a407 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -355,8 +355,6 @@ static void *php_libxml_streams_IO_open_wrapper(const char *filename, const char context = php_stream_context_from_zval(Z_ISUNDEF(LIBXML(stream_context))? NULL : &LIBXML(stream_context), 0); ret_val = php_stream_open_wrapper_ex(path_to_open, (char *)mode, REPORT_ERRORS, NULL, context); - /* Prevent from closing this by fclose() */ - ((php_stream*)ret_val)->flags |= PHP_STREAM_FLAG_NO_FCLOSE; if (isescaped) { xmlFree(resolved_path); } |