parser: Halt parser if switching encodings fails

Avoids buffer overread in htmlParseHTMLAttribute.

Found by OSS-Fuzz.
This commit is contained in:
Nick Wellnhofer 2023-03-30 13:53:24 +02:00
parent 1061537efd
commit 0e42adce77

View File

@ -1234,9 +1234,11 @@ xmlSwitchInputEncoding(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
nbchars = xmlCharEncInput(in, 0);
xmlBufResetInput(in->buffer, input);
if (nbchars < 0) {
/* TODO: This could be an out of memory or an encoding error. */
xmlErrInternal(ctxt,
"switching encoding: encoder error\n",
NULL);
xmlHaltParser(ctxt);
return (-1);
}
consumed = use - xmlBufUse(in->raw);