summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2017-09-12 15:10:54 +0200
committerSebastian Pipping <sping@gentoo.org>2017-09-12 15:14:45 +0200
commit2f110fc7f69c366f738bbe03b74157d503fde59b (patch)
treeb5a17a2fe7e0cd4943cdeaf70f7a3764ef4a029f /dev-libs/expat/files
parentsci-physics/lammps: fix deps (#630700) and rpc incl (#630700) (diff)
downloadgentoo-2f110fc7f69c366f738bbe03b74157d503fde59b.tar.gz
gentoo-2f110fc7f69c366f738bbe03b74157d503fde59b.tar.bz2
gentoo-2f110fc7f69c366f738bbe03b74157d503fde59b.zip
dev-libs/expat: Remove old (bug 622046)
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-libs/expat/files')
-rw-r--r--dev-libs/expat/files/expat-2.1.1-CVE-2016-0718-regression.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-libs/expat/files/expat-2.1.1-CVE-2016-0718-regression.patch b/dev-libs/expat/files/expat-2.1.1-CVE-2016-0718-regression.patch
deleted file mode 100644
index 03ea42def99b..000000000000
--- a/dev-libs/expat/files/expat-2.1.1-CVE-2016-0718-regression.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 3e6190e433479e56f8c1e5adc1198b3c86b15577 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebastian@pipping.org>
-Date: Sun, 17 Jul 2016 20:22:29 +0200
-Subject: [PATCH] Fix regression introduced by patch to CVE-2016-0718 (bug
- #539)
-
-Tag names were cut off in some cases; reported by Andy Wang
----
- expat/lib/xmlparse.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/expat/lib/xmlparse.c b/expat/lib/xmlparse.c
-index 13e080d..2630310 100644
---- a/expat/lib/xmlparse.c
-+++ b/expat/lib/xmlparse.c
-@@ -2430,7 +2430,7 @@ doContent(XML_Parser parser,
- &fromPtr, rawNameEnd,
- (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1);
- convLen = (int)(toPtr - (XML_Char *)tag->buf);
-- if ((convert_res == XML_CONVERT_COMPLETED) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE)) {
-+ if ((fromPtr >= rawNameEnd) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE)) {
- tag->name.strLen = convLen;
- break;
- }
---
-2.9.2
-