bug fix: an array was declared too small
authorceriel <none@none>
Thu, 7 Jul 1988 10:55:52 +0000 (10:55 +0000)
committerceriel <none@none>
Thu, 7 Jul 1988 10:55:52 +0000 (10:55 +0000)
mach/proto/top/top.c

index f72e478..482a3cc 100644 (file)
@@ -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;