bug fix: an array was declared too small

This commit is contained in:
ceriel 1988-07-07 10:55:52 +00:00
parent b4265c5407
commit 3048d94603

View file

@ -280,7 +280,7 @@ bool opmatch(t,s)
templ_p t; templ_p t;
char *s; char *s;
{ {
char *l, buf[MAXOPLEN]; char *l, buf[MAXOPLEN+1];
bool was_instantiated; bool was_instantiated;
int vno; int vno;