[CVE-2024-34459] Fix buffer overread with xmllint --htmlout

Add a missing bounds check.
This commit is contained in:
Nick Wellnhofer 2024-05-08 11:49:31 +02:00
parent 8e9fdc20f0
commit 2876ac5392

View File

@ -560,7 +560,7 @@ xmlHTMLPrintFileContext(xmlParserInputPtr input) {
len = strlen(buffer);
snprintf(&buffer[len], sizeof(buffer) - len, "\n");
cur = input->cur;
while ((*cur == '\n') || (*cur == '\r'))
while ((cur > base) && ((*cur == '\n') || (*cur == '\r')))
cur--;
n = 0;
while ((cur != base) && (n++ < 80)) {