freebsd-ports/print/ghostscript9-agpl/files/patch-psi-zicc.c
Hiroki Sato ed102396a2 Add print/ghostscript9-agpl{,-nox11}. Ghostscript 9.x has released under
GNU Affero GPL version 3 since 9.07 while print/ghostscript9 (version 9.06)
was under GNU GPL version 3.  The difference between the two licenses is
whether SaaS loophole is closed or not.  For more detail, see
http://www.gnu.org/licenses/why-affero-gpl.html.
2013-04-28 16:59:29 +00:00

12 lines
415 B
C

--- psi/zicc.c
+++ psi/zicc.c 2008-02-05 16:11:59.000000000 +0000
@@ -77,6 +77,9 @@ zseticcspace(i_ctx_t * i_ctx_p)
dict_find_string(op, "N", &pnval);
ncomps = pnval->value.intval;
+ if (2*ncomps > sizeof(range_buff)/sizeof(float))
+ return_error(e_rangecheck);
+
/* verify the DataSource entry */
if (dict_find_string(op, "DataSource", &pstrmval) <= 0)
return_error(e_undefined);