Commit 0e193f0d61f6d6f29c31ac5f801975e810df7a04

Nick Wellnhofer 2022-11-21T22:09:19

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.