From 17600e318cbfaf538cafe9193497e26f87e0c320 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 5 Sep 1996 12:32:33 +0000 Subject: [PATCH] 1 char oflow; bitblt & deraadt --- lib/libc/nls/catopen.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/libc/nls/catopen.c b/lib/libc/nls/catopen.c index 28dd2f69408..193250fc24e 100644 --- a/lib/libc/nls/catopen.c +++ b/lib/libc/nls/catopen.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: catopen.c,v 1.6 1996/08/26 00:17:20 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: catopen.c,v 1.7 1996/09/05 12:32:33 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #define _NLS_PRIVATE @@ -88,12 +88,12 @@ _catopen(name, oflag) switch (*(++s)) { case 'L': /* locale */ u = lang; - while (*u && t < tmppath + PATH_MAX) + while (*u && t < tmppath + PATH_MAX-1) *t++ = *u++; break; case 'N': /* name */ u = name; - while (*u && t < tmppath + PATH_MAX) + while (*u && t < tmppath + PATH_MAX-1) *t++ = *u++; break; case 'l': /* lang */ @@ -101,11 +101,11 @@ _catopen(name, oflag) case 'c': /* codeset */ break; default: - if (t < tmppath + PATH_MAX) + if (t < tmppath + PATH_MAX-1) *t++ = *s; } } else { - if (t < tmppath + PATH_MAX) + if (t < tmppath + PATH_MAX-1) *t++ = *s; } s++; -- 2.20.1