summaryrefslogtreecommitdiff
path: root/graphics/lcms/patches
diff options
context:
space:
mode:
authorgdt <gdt>2009-04-19 16:58:29 +0000
committergdt <gdt>2009-04-19 16:58:29 +0000
commitf64b3f46584974c2395d5f84cfcf57467be4c88f (patch)
tree8435cc1d8f83e72cb0d2a944462bad16ebfc417f /graphics/lcms/patches
parent7ca7ed4ff19545e777d442c8e01683fb693093b9 (diff)
downloadpkgsrc-f64b3f46584974c2395d5f84cfcf57467be4c88f.tar.gz
Update to 1.18a released by Marti Maria. Call it 1.18.0.1 in pkgsrc
so that it sorts correctly, and leave 1.18.1 available for a possible future upstream bugfix point release. Changes since 1.18: incorporate the fix in our patch-aa (No need to pull to pkgsrc-stable; this is the same as 1.18nb2)
Diffstat (limited to 'graphics/lcms/patches')
-rw-r--r--graphics/lcms/patches/patch-aa28
1 files changed, 0 insertions, 28 deletions
diff --git a/graphics/lcms/patches/patch-aa b/graphics/lcms/patches/patch-aa
deleted file mode 100644
index ddae35500dc..00000000000
--- a/graphics/lcms/patches/patch-aa
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.11 2009/04/14 19:24:30 tron Exp $
-
-Patch for SA34634/CVE-2009-0793 taken from Redhat's Bugzilla:
-
-https://bugzilla.redhat.com/attachment.cgi?id=337279
-
---- src/cmsxform.c.orig 2009-03-21 15:31:52.000000000 +0000
-+++ src/cmsxform.c 2009-04-14 19:18:05.000000000 +0100
-@@ -660,6 +660,9 @@
- GrayTRC = cmsReadICCGamma(hProfile, icSigGrayTRCTag);
- FromLstarToXYZ(GrayTRC, Shapes1);
-
-+ if (GrayTRC == NULL)
-+ return NULL;
-+
- // Reversing must be done after curve translation
-
- Shapes[0] = cmsReverseGamma(Shapes1[0]->nEntries, Shapes1[0]);
-@@ -675,6 +678,9 @@
-
- GrayTRC = cmsReadICCGammaReversed(hProfile, icSigGrayTRCTag); // Y
-
-+ if (GrayTRC == NULL)
-+ return NULL;
-+
- Shapes[0] = cmsDupGamma(GrayTRC);
- Shapes[1] = cmsDupGamma(GrayTRC);
- Shapes[2] = cmsDupGamma(GrayTRC);