diff options
Diffstat (limited to 'print/ghostscript9-base/files/patch-psi-zicc.c')
-rw-r--r-- | print/ghostscript9-base/files/patch-psi-zicc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/print/ghostscript9-base/files/patch-psi-zicc.c b/print/ghostscript9-base/files/patch-psi-zicc.c new file mode 100644 index 000000000000..98c4eed85c37 --- /dev/null +++ b/print/ghostscript9-base/files/patch-psi-zicc.c @@ -0,0 +1,12 @@ +--- 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); |