From: ceriel Date: Thu, 7 Jul 1988 10:55:52 +0000 (+0000) Subject: bug fix: an array was declared too small X-Git-Tag: release-5-5~3084 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3048d946033ad63cdbf6ee678f3ed280481950df;p=ack.git bug fix: an array was declared too small --- diff --git a/mach/proto/top/top.c b/mach/proto/top/top.c index f72e4787d..482a3cc08 100644 --- a/mach/proto/top/top.c +++ b/mach/proto/top/top.c @@ -280,7 +280,7 @@ bool opmatch(t,s) templ_p t; char *s; { - char *l, buf[MAXOPLEN]; + char *l, buf[MAXOPLEN+1]; bool was_instantiated; int vno;