Use vsnprintf instead of vsprintf.

[XXX: not compiled, since I'm on ELF -- .uue should probably be rebuilt]
This commit is contained in:
wiz 2001-09-20 20:55:29 +00:00
parent bfaf142ff6
commit f34496a7b0

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtld.c,v 1.81 2001/06/21 21:19:25 christos Exp $ */
/* $NetBSD: rtld.c,v 1.82 2001/09/20 20:55:29 wiz Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -1926,7 +1926,7 @@ char *fmt;
va_start(ap);
#endif
vsprintf(buf, fmt, ap);
vsnprintf(buf, sizeof(buf), fmt, ap);
(void)write(1, buf, strlen(buf));
va_end(ap);
}