ID: 48202 Updated by: rricha...@php.net Reported By: koenk82 at gmail dot com -Status: Assigned +Status: Bogus Bug Type: XML Writer Operating System: * PHP Version: 5.*, 6CVS (2009-05-09) Assigned To: rrichards New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Error message was fixed in libxml2 source - will be in the 2.7.4 release Previous Comments: ------------------------------------------------------------------------ [2009-05-30 22:14:16] paj...@php.net Rob, can you take a look please? Maybe change the error in xmlNewTextWriterFilename from: out = xmlOutputBufferCreateFilename(uri, NULL, compression); if (out == NULL) { xmlWriterErrMsg(NULL, XML_ERR_NO_MEMORY, "xmlNewTextWriterFilename : out of memory!\n"); return NULL; } to out = xmlOutputBufferCreateFilename(uri, NULL, compression); if (out == NULL) { xmlWriterErrMsg(NULL, XML_EIO, "xmlNewTextWriterFilename : cannot create file %s\n", uri); return NULL; } ------------------------------------------------------------------------ [2009-05-30 20:59:38] paj...@php.net I found the problem, it is a bug in libxml's xmlwriter. It does not check correctly the return value from the createfilename callback. ------------------------------------------------------------------------ [2009-05-26 14:12:42] fel...@php.net It's reproducible yet. $ sapi/cli/php -r 'xmlwriter_open_uri("file:///a");' Warning: xmlwriter_open_uri(/a): failed to open stream: Permission denied in Command line code on line 1 Warning: xmlwriter_open_uri(): xmlNewTextWriterFilename : out of memory! in Command line code on line 1 ------------------------------------------------------------------------ [2009-05-25 16:53:52] paj...@php.net This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. fixed in 5.2, 5.3 and HEAD ------------------------------------------------------------------------ [2009-05-09 13:04:56] paj...@php.net reproduced during the testfest 2009/utrecht, assigning to me. ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/48202 -- Edit this bug report at http://bugs.php.net/?id=48202&edit=1