aboutsummaryrefslogtreecommitdiffstats
path: root/main/ghostscript/ghostscript-wrf-snprintf.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-11-18 07:50:02 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-11-18 07:50:02 +0000
commit9c57a9e5f2f3a777ef03f64814ad4ae25509f38c (patch)
tree119ae825af76ae45cdeb2c444f2614d360807b98 /main/ghostscript/ghostscript-wrf-snprintf.patch
parentf3becbf07433411ae2c2f8bda3342cac3dfc78df (diff)
downloadaports-9c57a9e5f2f3a777ef03f64814ad4ae25509f38c.tar.bz2
aports-9c57a9e5f2f3a777ef03f64814ad4ae25509f38c.tar.xz
main/ghostscript: upgrade to 9.18
Diffstat (limited to 'main/ghostscript/ghostscript-wrf-snprintf.patch')
-rw-r--r--main/ghostscript/ghostscript-wrf-snprintf.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/main/ghostscript/ghostscript-wrf-snprintf.patch b/main/ghostscript/ghostscript-wrf-snprintf.patch
deleted file mode 100644
index 74d8c2a5c6..0000000000
--- a/main/ghostscript/ghostscript-wrf-snprintf.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -up ghostscript-9.07/base/wrfont.c.wrf-snprintf ghostscript-9.07/base/wrfont.c
---- ghostscript-9.07/base/wrfont.c.wrf-snprintf 2013-07-01 13:02:33.373244683 +0100
-+++ ghostscript-9.07/base/wrfont.c 2013-07-01 13:04:55.022864299 +0100
-@@ -72,7 +72,8 @@ WRF_wfloat(WRF_output * a_output, double
- {
- char buffer[32];
-
-- gs_sprintf(buffer, "%f", a_float);
-+ if (gs_snprintf(buffer, sizeof (buffer), "%f", a_float) >= sizeof (buffer))
-+ abort();
- WRF_wstring(a_output, buffer);
- }
-
-@@ -81,6 +82,7 @@ WRF_wint(WRF_output * a_output, long a_i
- {
- char buffer[32];
-
-- gs_sprintf(buffer, "%ld", a_int);
-+ if (gs_snprintf(buffer, sizeof (buffer), "%ld", a_int) >= sizeof (buffer))
-+ abort();
- WRF_wstring(a_output, buffer);
- }