]> granicus.if.org Git - php/commitdiff
Fixed bug #48204 (xmlwriter_open_uri() does not emit warnings on invalid
authorIlia Alshanetsky <iliaa@php.net>
Mon, 11 May 2009 12:21:26 +0000 (12:21 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Mon, 11 May 2009 12:21:26 +0000 (12:21 +0000)
paths)

NEWS
ext/xmlwriter/php_xmlwriter.c

diff --git a/NEWS b/NEWS
index 6a2dc2a962d78f1aaba844e2a3f05702f8b96993..8e233e35a3a2d3159a7f01cda0570b0e764d135c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -39,6 +39,8 @@ PHP                                                                        NEWS
 - Added ability to throw exceptions from SQLite3 instead of warnings. (Scott)
 - Added startup notices for deprecated ini settings. (Kalle)
 
+- Fixed bug #48204 (xmlwriter_open_uri() does not emit warnings on invalid
+  paths). (Ilia)
 - Fixed bug #48185 (warning: value computed is not used in
   pdo_sqlite_stmt_get_col line 271). (Matteo)
 - Fixed bug #48087 (call_user_method() invalid free of arguments). (Felipe)
index e99d9aa16c1a115c18ce933eebd0c642620ed5cf..773ce9144076f975cd382af3fcadfefe5bdcd8d9 100644 (file)
@@ -1755,6 +1755,7 @@ static PHP_FUNCTION(xmlwriter_open_uri)
 
        valid_file = _xmlwriter_get_valid_file_path(source, resolved_path, MAXPATHLEN TSRMLS_CC);
        if (!valid_file) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to resolve file path");
                RETURN_FALSE;
        }