diff options
-rw-r--r-- | graphics/gimp/Makefile | 5 | ||||
-rw-r--r-- | graphics/gimp/distinfo | 9 | ||||
-rw-r--r-- | graphics/gimp/patches/patch-ae | 19 |
3 files changed, 6 insertions, 27 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index 13299e599e7..aad96f55844 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.157 2007/07/04 13:34:35 lkundrak Exp $ +# $NetBSD: Makefile,v 1.158 2007/07/17 13:55:36 adam Exp $ -DISTNAME= gimp-2.2.15 -PKGREVISION= 2 +DISTNAME= gimp-2.2.17 CATEGORIES= graphics MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v2.2/ \ ftp://ftp.cs.umn.edu/pub/gimp/v2.2/ \ diff --git a/graphics/gimp/distinfo b/graphics/gimp/distinfo index f5f4d9e626c..017f2d6b809 100644 --- a/graphics/gimp/distinfo +++ b/graphics/gimp/distinfo @@ -1,9 +1,8 @@ -$NetBSD: distinfo,v 1.35 2007/07/04 13:34:35 lkundrak Exp $ +$NetBSD: distinfo,v 1.36 2007/07/17 13:55:37 adam Exp $ -SHA1 (gimp-2.2.15.tar.bz2) = ce2357139179e67f361e3ce1b1fb82d1dd5c08e4 -RMD160 (gimp-2.2.15.tar.bz2) = 322b5c07de9e6cc9b206d944278d58d8d6cd1e2f -Size (gimp-2.2.15.tar.bz2) = 13097438 bytes +SHA1 (gimp-2.2.17.tar.bz2) = e7bbfe5fd685f625f023af7f8fe5774feed26116 +RMD160 (gimp-2.2.17.tar.bz2) = 0272b20a59633eb057383e60d69abf668dd507d8 +Size (gimp-2.2.17.tar.bz2) = 13102077 bytes SHA1 (patch-aa) = 6a25d14a018e02d353e6f10364384e9df7a30ebd SHA1 (patch-ab) = 461467b76c45e53042da8e3aee4bb9f556730792 SHA1 (patch-ad) = 632c34e0fbeda69139b2b674d9c5ef80db40dcca -SHA1 (patch-ae) = 079b081e8eb0c19d18060d9c21ea9d12df9c5cc4 diff --git a/graphics/gimp/patches/patch-ae b/graphics/gimp/patches/patch-ae deleted file mode 100644 index 458b53e9e0c..00000000000 --- a/graphics/gimp/patches/patch-ae +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ae,v 1.7 2007/07/04 13:34:35 lkundrak Exp $ - -Fix for CVE-2007-2949 heap overflow from upstream. - ---- plug-ins/common/psd.c.orig 2007-07-04 15:11:22.000000000 +0200 -+++ plug-ins/common/psd.c -@@ -1202,6 +1202,12 @@ seek_to_and_unpack_pixeldata(FILE* fd, g - width = channel->width; - height = channel->height; - -+ if (width > G_MAXINT16 || height > G_MAXINT16) -+ { -+ g_message ("Error: Invalid channel dimensions"); -+ gimp_quit (); -+ } -+ - IFDBG - { - printf("\t\t\tLayer (%d) Channel (%d:%d) Compression: %d (%s)\n", |