diff options
author | rafan <rafan@FreeBSD.org> | 2008-03-02 20:43:31 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2008-03-02 20:43:31 +0800 |
commit | b757701471ce0b7bdea76601bbabcbf94eb17b06 (patch) | |
tree | 2ac251fd2d902ead6301ce54130c1dea3368893f /print/ghostscript8/files | |
parent | 553be236a2bdda73bf8a947297787ad42e5af576 (diff) | |
download | freebsd-ports-gnome-b757701471ce0b7bdea76601bbabcbf94eb17b06.tar.gz freebsd-ports-gnome-b757701471ce0b7bdea76601bbabcbf94eb17b06.tar.zst freebsd-ports-gnome-b757701471ce0b7bdea76601bbabcbf94eb17b06.zip |
- Fix security issue
PR: ports/121283
Security: CVE-2008-0411
Submitted by: bf <bf2006a at yahoo.com>
Diffstat (limited to 'print/ghostscript8/files')
-rw-r--r-- | print/ghostscript8/files/patch-src__zicc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/print/ghostscript8/files/patch-src__zicc.c b/print/ghostscript8/files/patch-src__zicc.c new file mode 100644 index 000000000000..a5ddf3a4ff0d --- /dev/null +++ b/print/ghostscript8/files/patch-src__zicc.c @@ -0,0 +1,12 @@ +--- src/zicc.c ++++ src/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); |