parser: Remove dangerous check in xmlParseCharData

If this check succeeds, xmlParseCharData could be called over and over
again without making progress, resulting in an infinite loop.

It's only important to check for XML_PARSER_EOF which is done later.

Related to #441.
This commit is contained in:
Nick Wellnhofer 2022-11-21 22:09:19 +01:00
parent 94ca36c2c4
commit 0e193f0d61

View File

@ -4550,9 +4550,6 @@ get_more:
line = ctxt->input->line;
col = ctxt->input->col;
}
/* something really bad happened in the SAX callback */
if (ctxt->instate != XML_PARSER_CONTENT)
return;
}
ctxt->input->cur = in;
if (*in == 0xD) {