pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc/koffice Add patches to address the latest xpdf se...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0044d8f320ac
branches:  trunk
changeset: 486623:0044d8f320ac
user:      markd <markd%pkgsrc.org@localhost>
date:      Thu Dec 30 21:49:14 2004 +0000

description:
Add patches to address the latest xpdf security issue in the PDF import
filter. Bump PKGREVISION.

diffstat:

 misc/koffice/Makefile         |   4 ++--
 misc/koffice/distinfo         |   4 +++-
 misc/koffice/patches/patch-ac |  15 +++++++++++++++
 misc/koffice/patches/patch-ad |  28 ++++++++++++++++++++++++++++
 4 files changed, 48 insertions(+), 3 deletions(-)

diffs (77 lines):

diff -r 0005f89a8a3c -r 0044d8f320ac misc/koffice/Makefile
--- a/misc/koffice/Makefile     Thu Dec 30 21:48:03 2004 +0000
+++ b/misc/koffice/Makefile     Thu Dec 30 21:49:14 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.50 2004/12/28 23:18:21 reed Exp $
+# $NetBSD: Makefile,v 1.51 2004/12/30 21:49:14 markd Exp $
 
 DISTNAME=      koffice-1.3.5
-PKGREVISION=   2
+PKGREVISION=   3
 CATEGORIES=    misc kde
 MASTER_SITES=  ftp://ftp.kde.org/pub/kde/stable/koffice-1.3.5/src/ \
                ftp://ftp.us.kde.org/pub/kde/stable/koffice-1.3.5/src/ \
diff -r 0005f89a8a3c -r 0044d8f320ac misc/koffice/distinfo
--- a/misc/koffice/distinfo     Thu Dec 30 21:48:03 2004 +0000
+++ b/misc/koffice/distinfo     Thu Dec 30 21:49:14 2004 +0000
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.18 2004/11/23 20:24:08 markd Exp $
+$NetBSD: distinfo,v 1.19 2004/12/30 21:49:14 markd Exp $
 
 SHA1 (koffice-1.3.5.tar.bz2) = feccb391be8039514f23f0f9cde9b01e22625769
 Size (koffice-1.3.5.tar.bz2) = 10778584 bytes
 SHA1 (patch-aa) = 64f32eaaa0f6e29f6ec3c9b92ecf4599cd11f178
 SHA1 (patch-ab) = 6f253484f6c09877cca6b1d1d7610725c895e13a
+SHA1 (patch-ac) = bd83be082e58c09630d97e26f21eacbc0ae028f9
+SHA1 (patch-ad) = 83f18c3d073027df62614f7e60035c13100682cf
diff -r 0005f89a8a3c -r 0044d8f320ac misc/koffice/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/koffice/patches/patch-ac     Thu Dec 30 21:49:14 2004 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ac,v 1.8 2004/12/30 21:49:14 markd Exp $
+
+--- filters/kword/pdf/xpdf/xpdf/Gfx.cc.orig    2003-01-26 12:17:44.000000000 +1300
++++ filters/kword/pdf/xpdf/xpdf/Gfx.cc
+@@ -2379,7 +2379,9 @@ void Gfx::doImage(Object *ref, Stream *s
+     haveMask = gFalse;
+     dict->lookup("Mask", &maskObj);
+     if (maskObj.isArray()) {
+-      for (i = 0; i < maskObj.arrayGetLength(); ++i) {
++      for (i = 0;
++         i < maskObj.arrayGetLength() && i < 2*gfxColorMaxComps;
++         ++i) {
+       maskObj.arrayGet(i, &obj1);
+       maskColors[i] = obj1.getInt();
+       obj1.free();
diff -r 0005f89a8a3c -r 0044d8f320ac misc/koffice/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/koffice/patches/patch-ad     Thu Dec 30 21:49:14 2004 +0000
@@ -0,0 +1,28 @@
+$NetBSD: patch-ad,v 1.9 2004/12/30 21:49:14 markd Exp $
+
+--- filters/kword/pdf/xpdf/xpdf/GfxState.cc.orig       2003-01-26 12:17:44.000000000 +1300
++++ filters/kword/pdf/xpdf/xpdf/GfxState.cc
+@@ -682,6 +682,11 @@ GfxColorSpace *GfxICCBasedColorSpace::pa
+   }
+   nCompsA = obj2.getInt();
+   obj2.free();
++  if (nCompsA > gfxColorMaxComps) {
++    error(-1, "ICCBased color space with too many (%d > %d) components",
++        nCompsA, gfxColorMaxComps);
++    nCompsA = gfxColorMaxComps;
++  }
+   if (dict->lookup("Alternate", &obj2)->isNull() ||
+       !(altA = GfxColorSpace::parse(&obj2))) {
+     switch (nCompsA) {
+@@ -1023,6 +1028,11 @@ GfxColorSpace *GfxDeviceNColorSpace::par
+     goto err2;
+   }
+   nCompsA = obj1.arrayGetLength();
++  if (nCompsA > gfxColorMaxComps) {
++    error(-1, "DeviceN color space with too many (%d > %d) components",
++        nCompsA, gfxColorMaxComps);
++    nCompsA = gfxColorMaxComps;
++  }
+   for (i = 0; i < nCompsA; ++i) {
+     if (!obj1.arrayGet(i, &obj2)->isName()) {
+       error(-1, "Bad DeviceN color space (names)");



Home | Main Index | Thread Index | Old Index