misc: array bounds fixes that gcc finds (John Gosset)

This commit is contained in:
Russ Cox 2008-05-10 13:35:19 -04:00
parent 77809fb0cc
commit ada24b4005
6 changed files with 6 additions and 9 deletions

View file

@ -7,7 +7,7 @@
char *version = "version Oct 24, 1991";
char in[MAXLINE]; /* input buffer */
char in[MAXLINE+1]; /* input buffer */
int noeqn;
char *cmdname;