mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix error code in xmlTextWriterStartDocument
Return XML_ERR_UNSUPPORTED_ENCODING if no encoding handler could be found. Fixes bug #521808: https://bugzilla.gnome.org/show_bug.cgi?id=521808 Resolves !53.
This commit is contained in:
parent
40e00bc517
commit
d8999b1da0
@ -541,8 +541,8 @@ xmlTextWriterStartDocument(xmlTextWriterPtr writer, const char *version,
|
||||
if (encoding != NULL) {
|
||||
encoder = xmlFindCharEncodingHandler(encoding);
|
||||
if (encoder == NULL) {
|
||||
xmlWriterErrMsg(writer, XML_ERR_NO_MEMORY,
|
||||
"xmlTextWriterStartDocument : out of memory!\n");
|
||||
xmlWriterErrMsg(writer, XML_ERR_UNSUPPORTED_ENCODING,
|
||||
"xmlTextWriterStartDocument : unsupported encoding\n");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user