about summary refs log tree commit diff
path: root/pkgs/development/libraries/gd/CVE-2016-3074.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/gd/CVE-2016-3074.patch')
-rw-r--r--pkgs/development/libraries/gd/CVE-2016-3074.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gd/CVE-2016-3074.patch b/pkgs/development/libraries/gd/CVE-2016-3074.patch
new file mode 100644
index 0000000000000..76994697729bf
--- /dev/null
+++ b/pkgs/development/libraries/gd/CVE-2016-3074.patch
@@ -0,0 +1,13 @@
+diff --git a/src/gd_gd2.c b/src/gd_gd2.c
+index 6f28461..a50b33d 100644
+--- a/src/gd_gd2.c
++++ b/src/gd_gd2.c
+@@ -165,6 +165,8 @@ _gd2GetHeader (gdIOCtxPtr in, int *sx, int *sy,
+ 			if (gdGetInt (&cidx[i].size, in) != 1) {
+ 				goto fail2;
+ 			};
++			if (cidx[i].offset < 0 || cidx[i].size < 0)
++				goto fail2;
+ 		};
+ 		*chunkIdx = cidx;
+ 	};