33 lines
994 B
Diff
33 lines
994 B
Diff
From 73060457de03c0dada603bdc6c6e1fc9b08fc94b Mon Sep 17 00:00:00 2001
|
|
From: Zhipeng Xie <xiezhipeng1@huawei.com>
|
|
Date: Thu, 12 Dec 2019 17:30:55 +0800
|
|
Subject: [PATCH] Fix infinite loop in xmlStringLenDecodeEntities
|
|
|
|
When ctxt->instate == XML_PARSER_EOF,xmlParseStringEntityRef
|
|
return NULL which cause a infinite loop in xmlStringLenDecodeEntities
|
|
|
|
Found with libFuzzer.
|
|
|
|
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
|
|
---
|
|
parser.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/parser.c b/parser.c
|
|
index 4696f916..3e09b3e9 100644
|
|
--- a/parser.c
|
|
+++ b/parser.c
|
|
@@ -2786,7 +2786,8 @@ xmlStringLenDecodeEntities(xmlParserCtxtPtr ctxt, const xmlChar *str, int len,
|
|
else
|
|
c = 0;
|
|
while ((c != 0) && (c != end) && /* non input consuming loop */
|
|
- (c != end2) && (c != end3)) {
|
|
+ (c != end2) && (c != end3) &&
|
|
+ (ctxt->instate != XML_PARSER_EOF)) {
|
|
|
|
if (c == 0) break;
|
|
if ((c == '&') && (str[1] == '#')) {
|
|
--
|
|
2.19.1
|
|
|