From: deraadt Date: Thu, 5 Sep 1996 12:32:33 +0000 (+0000) Subject: 1 char oflow; bitblt & deraadt X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=17600e318cbfaf538cafe9193497e26f87e0c320;p=openbsd 1 char oflow; bitblt & deraadt --- 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++;