pkgsrc/x11/xview-lib/patches/patch-fa
abs c9c8f97e88 - Add PKG_DESTDIR_SUPPORT
- Depend on the latest version of xview-config
- Mark as LICENSE sun-openlook-license
- Bump pkgrevision
2009-12-10 20:35:56 +00:00

31 lines
1,007 B
Text

$NetBSD: patch-fa,v 1.2 2009/12/10 20:35:58 abs Exp $
--- lib/libxview/base/xv_parse.c.orig 1993-06-29 05:14:43.000000000 +0000
+++ lib/libxview/base/xv_parse.c
@@ -312,7 +312,7 @@ xv_parse_one(app_name, argc, argv)
if (argc <= slot->num_args) {
char dummy[128];
- (void) sprintf(dummy,
+ (void) snprintf(dummy, sizeof(dummy),
XV_MSG("%s: missing argument after %s"),
app_name,
argv[0]);
@@ -392,7 +392,7 @@ xv_parse_one(app_name, argc, argv)
if (defaults_lookup(argv[1], known_scales) == -1) {
char dummy[1024];
- (void) sprintf(dummy,
+ (void) snprintf(dummy, sizeof(dummy),
XV_MSG("%s: unknown scale \"%s\" used with %s option"),
app_name, argv[1], argv[0]);
xv_error(XV_NULL,
@@ -611,7 +611,7 @@ NegArg:
{
char dummy[128];
- (void) sprintf(dummy,
+ (void) snprintf(dummy, sizeof(dummy),
XV_MSG("%s: can't have negative argument %s after %s"),
app_name, argv[bad_arg], argv[0]);
xv_error(XV_NULL,