From: Wez Furlong Date: Thu, 26 Dec 2002 22:36:21 +0000 (+0000) Subject: MFH: get_meta_tags() stream leak X-Git-Tag: php-4.3.0~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=055f1f483ed5a7e1b74f0ce2003228436ef9ede8;p=php MFH: get_meta_tags() stream leak --- diff --git a/ext/standard/file.c b/ext/standard/file.c index 6c210d9206..d6bf21a669 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -273,14 +273,9 @@ PHP_FUNCTION(get_meta_tags) return; } - php_stream_open_wrapper(filename, "rb", 0, NULL); - - md.stream = php_stream_open_wrapper(filename, "rb", (use_include_path ? USE_PATH : 0) | ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL); - - if (!md.stream) { RETURN_FALSE;