]> git.pld-linux.org Git - packages/libxml2.git/blame - libxml2-CVE-2020-7595.patch
unconditional noarch subpackage
[packages/libxml2.git] / libxml2-CVE-2020-7595.patch
CommitLineData
2247840c
JB
1From 0e1a49c8907645d2e155f0d89d4d9895ac5112b5 Mon Sep 17 00:00:00 2001
2From: Zhipeng Xie <xiezhipeng1@huawei.com>
3Date: Thu, 12 Dec 2019 17:30:55 +0800
4Subject: [PATCH] Fix infinite loop in xmlStringLenDecodeEntities
5
6When ctxt->instate == XML_PARSER_EOF,xmlParseStringEntityRef
7return NULL which cause a infinite loop in xmlStringLenDecodeEntities
8
9Found with libFuzzer.
10
11Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
12---
13 parser.c | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16diff --git a/parser.c b/parser.c
17index d1c31963..a34bb6cd 100644
18--- a/parser.c
19+++ b/parser.c
20@@ -2646,7 +2646,8 @@ xmlStringLenDecodeEntities(xmlParserCtxtPtr ctxt, const xmlChar *str, int len,
21 else
22 c = 0;
23 while ((c != 0) && (c != end) && /* non input consuming loop */
24- (c != end2) && (c != end3)) {
25+ (c != end2) && (c != end3) &&
26+ (ctxt->instate != XML_PARSER_EOF)) {
27
28 if (c == 0) break;
29 if ((c == '&') && (str[1] == '#')) {
30--
312.24.1
32
This page took 0.102721 seconds and 4 git commands to generate.