summaryrefslogtreecommitdiff
path: root/graphics/gd/patches/patch-ad
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2013-09-02 21:17:42 +0000
committeradam <adam@pkgsrc.org>2013-09-02 21:17:42 +0000
commit6053333de023a04b51180987b962ca084d550ab4 (patch)
tree086572be6f969d3f797e3d39f983ed3a866f75e8 /graphics/gd/patches/patch-ad
parent30b15b560ede65e353f4add7bde4bfdd0303ad98 (diff)
downloadpkgsrc-6053333de023a04b51180987b962ca084d550ab4.tar.gz
Changes 2.1.0:
* gdColorMapLookup() answers the RGB values according to given color map * Added support of variable resolution * new filter gdImagePixelate() * merged improvements that PHP GD team had made to GD Graphics Library * bugfixes
Diffstat (limited to 'graphics/gd/patches/patch-ad')
-rw-r--r--graphics/gd/patches/patch-ad18
1 files changed, 0 insertions, 18 deletions
diff --git a/graphics/gd/patches/patch-ad b/graphics/gd/patches/patch-ad
deleted file mode 100644
index 3c5e92a6b73..00000000000
--- a/graphics/gd/patches/patch-ad
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2009/10/22 14:39:55 taca Exp $
-
-* Fix for http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3546,
- similar chagne from PHP's SVN repositry r289557.
-
---- gd_gd.c.orig 2006-04-06 00:52:22.000000000 +0900
-+++ gd_gd.c
-@@ -44,6 +44,10 @@ _gdGetColors (gdIOCtx * in, gdImagePtr i
- {
- goto fail1;
- }
-+ if (im->colorsTotal > gdMaxColors)
-+ {
-+ goto fail1;
-+ }
- }
- /* Int to accommodate truecolor single-color transparency */
- if (!gdGetInt (&im->transparent, in))