blob: c2d2953c91d160df0b32de5f155ac383a593f843 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- psi/zicc.c.orig 2015-03-30 08:21:24 UTC
+++ psi/zicc.c
@@ -61,6 +61,9 @@ int seticc(i_ctx_t * i_ctx_p, int ncomps
palt_cs = gs_currentcolorspace(igs);
+ if (2*ncomps > sizeof(range_buff)/sizeof(float))
+ return_error(e_rangecheck);
+
/* verify the DataSource entry */
if (dict_find_string(ICCdict, "DataSource", &pstrmval) <= 0)
return_error(e_undefined);
|