summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch')
-rw-r--r--app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch
deleted file mode 100644
index 9e8f4bfe6246..000000000000
--- a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 6ba3bba6447897260bf4117e191e09d89d91ff62 Mon Sep 17 00:00:00 2001
-From: Albert Astals Cid <aacid@kde.org>
-Date: Wed, 13 Sep 2017 23:09:45 +0200
-Subject: [PATCH 2/4] isImageInterpolationRequired: Fix divide by 0 on broken
- documents
-
-Bug #102688
----
- splash/Splash.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/splash/Splash.cc b/splash/Splash.cc
-index 46b8ce29..39fc7d64 100644
---- a/splash/Splash.cc
-+++ b/splash/Splash.cc
-@@ -4134,7 +4134,7 @@ SplashError Splash::arbitraryTransformImage(SplashImageSource src, SplashICCTran
- static GBool isImageInterpolationRequired(int srcWidth, int srcHeight,
- int scaledWidth, int scaledHeight,
- GBool interpolate) {
-- if (interpolate)
-+ if (interpolate || srcWidth == 0 || srcHeight == 0)
- return gTrue;
-
- /* When scale factor is >= 400% we don't interpolate. See bugs #25268, #9860 */
---
-2.14.1
-