[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 a871df8c49
commit 8ddc7f1333

View File

@ -559,7 +559,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)) {