summaryrefslogtreecommitdiff
path: root/app-text/xpdf/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
commit463397cf1e064185110fe57c568d73f99a06f5d1 (patch)
tree9aa75eefc5154eaf0e3c33658b830fc54dc68052 /app-text/xpdf/files
parentc8d60dada2ec8eb48b2d2b290cd6683ccec40e39 (diff)
gentoo resync : 17.02.2021
Diffstat (limited to 'app-text/xpdf/files')
-rw-r--r--app-text/xpdf/files/xpdf-CVE-2019-17064.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-text/xpdf/files/xpdf-CVE-2019-17064.patch b/app-text/xpdf/files/xpdf-CVE-2019-17064.patch
deleted file mode 100644
index c4f84a4604c0..000000000000
--- a/app-text/xpdf/files/xpdf-CVE-2019-17064.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Fix CVE-2019-17064
-
-Fix NULL pointer dereference by initializing field before use.
-https://forum.xpdfreader.com/viewtopic.php?f=3&t=41890#p42672
-
-diff '--color=auto' -Naurd xpdf-4.02.orig/xpdf/Catalog.cc xpdf-4.02/xpdf/Catalog.cc
---- xpdf-4.02.orig/xpdf/Catalog.cc 2019-09-25 22:54:33.000000000 +0300
-+++ xpdf-4.02/xpdf/Catalog.cc 2020-03-01 12:05:43.235486706 +0300
-@@ -159,6 +159,7 @@
- baseURI = NULL;
- form = NULL;
- embeddedFiles = NULL;
-+ pageLabels = NULL;
- #if MULTITHREADED
- gInitMutex(&pageMutex);
- #endif
-@@ -241,7 +242,6 @@
- // get the ViewerPreferences object
- catDict.dictLookupNF("ViewerPreferences", &viewerPrefs);
-
-- pageLabels = NULL;
- if (catDict.dictLookup("PageLabels", &obj)->isDict()) {
- readPageLabelTree(&obj);
- }