mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Halt parser if switching encodings fails
Avoids buffer overread in htmlParseHTMLAttribute. Found by OSS-Fuzz.
This commit is contained in:
parent
1061537efd
commit
0e42adce77
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user