File libxml2-CVE-2019-20388.patch of Package libxml2
xxxxxxxxxx
1
From 7ffcd44d7e6c46704f8af0321d9314cd26e0e18a Mon Sep 17 00:00:00 2001
2
From: Zhipeng Xie <xiezhipeng1@huawei.com>
3
Date: Tue, 20 Aug 2019 16:33:06 +0800
4
Subject: [PATCH] Fix memory leak in xmlSchemaValidateStream
5
6
When ctxt->schema is NULL, xmlSchemaSAXPlug->xmlSchemaPreRun
7
alloc a new schema for ctxt->schema and set vctxt->xsiAssemble
8
to 1. Then xmlSchemaVStart->xmlSchemaPreRun initialize
9
vctxt->xsiAssemble to 0 again which cause the alloced schema
10
can not be freed anymore.
11
12
Found with libFuzzer.
13
14
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
15
---
16
xmlschemas.c | 1 -
17
1 file changed, 1 deletion(-)
18
19
diff --git a/xmlschemas.c b/xmlschemas.c
20
index 301c84499..39d92182f 100644
21
--- a/xmlschemas.c
22
+++ b/xmlschemas.c
23
24
vctxt->nberrors = 0;
25
vctxt->depth = -1;
26
vctxt->skipDepth = -1;
27
- vctxt->xsiAssemble = 0;
28
vctxt->hasKeyrefs = 0;
29
#ifdef ENABLE_IDC_NODE_TABLES_TEST
30
vctxt->createIDCNodeTables = 1;
31