summaryrefslogtreecommitdiffstats
path: root/package/gd/gd-maxcolors.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-11-27 10:42:49 -0800
committerPeter Korsgaard <jacmet@sunsite.dk>2012-11-27 11:21:06 -0800
commitd0a13821d7f6ceb34061014b9899eb81c3988ccf (patch)
treeb76848874fd8cf35fd9f31e611f67144743ccd7c /package/gd/gd-maxcolors.patch
parent47ee3051fc49d928d3ba6f83a8dea4102d8536f4 (diff)
downloadbuildroot-novena-d0a13821d7f6ceb34061014b9899eb81c3988ccf.tar.gz
buildroot-novena-d0a13821d7f6ceb34061014b9899eb81c3988ccf.zip
package: add gd package
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gd/gd-maxcolors.patch')
-rw-r--r--package/gd/gd-maxcolors.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/gd/gd-maxcolors.patch b/package/gd/gd-maxcolors.patch
new file mode 100644
index 000000000..161cf1993
--- /dev/null
+++ b/package/gd/gd-maxcolors.patch
@@ -0,0 +1,20 @@
+Patch from Gentoo:
+http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-libs/gd/files/gd-2.0.35-maxcolors.patch?view=log
+
+http://bugs.gentoo.org/292130
+
+fix in usptream repo already
+
+--- gd-2.0.35/gd_gd.c
++++ gd-2.0.35/gd_gd.c
+@@ -44,6 +44,10 @@
+ {
+ goto fail1;
+ }
++ if (im->colorsTotal > gdMaxColors)
++ {
++ goto fail1;
++ }
+ }
+ /* Int to accommodate truecolor single-color transparency */
+ if (!gdGetInt (&im->transparent, in))