diff options
author | Leonard Schmidt <lems@gmx.net> | 2014-08-14 22:42:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-15 23:21:32 +0700 |
commit | 1c650c30bc1f11d66d1859d7432051d4f80d5450 (patch) | |
tree | ca65f3b33f63f5d2bd301cf6f3f79033e118e30d /graphics/xli/patch-ae | |
parent | af741c4e20fb394b1a7bb26fa45c757f4baade1a (diff) | |
download | slackbuilds-1c650c30bc1f11d66d1859d7432051d4f80d5450.tar.gz |
graphics/xli: Added (X11 Image Loading Utility).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/xli/patch-ae')
-rw-r--r-- | graphics/xli/patch-ae | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/graphics/xli/patch-ae b/graphics/xli/patch-ae new file mode 100644 index 0000000000..78be8b3115 --- /dev/null +++ b/graphics/xli/patch-ae @@ -0,0 +1,16 @@ +$NetBSD: patch-ae,v 1.1 2005/10/30 17:58:58 salo Exp $ + +Security fix for CVE-2005-3178, from Debian. + +--- reduce.c.orig 1999-10-25 04:15:02.000000000 +0200 ++++ reduce.c 2005-10-30 18:49:53.000000000 +0100 +@@ -178,7 +178,8 @@ + /* get destination image */ + depth = colorsToDepth(OutColors); + new_image = newRGBImage(image->width, image->height, depth); +- sprintf(buf, "%s (%d colors)", image->title, OutColors); ++ snprintf(buf, BUFSIZ, "%s (%d colors)", image->title, OutColors); ++ buf[BUFSIZ-1] = '\0'; + new_image->title = dupString(buf); + new_image->gamma = image->gamma; + |