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:
Nick Wellnhofer 2019-10-14 17:04:04 +02:00
parent 40e00bc517
commit d8999b1da0

View File

@ -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;
}
}