From: utzoo!decvax!harpo!floyd!cmcl2!salkind
Newsgroups: net.notes
Title: Bug in access.c - (nf)
Article-I.D.: cmcl2.27365
Posted: Wed Jan 12 00:12:00 1983
Received: Thu Jan 13 05:36:26 1983

#N:cmcl2:12700003:000:357
cmcl2!salkind    Jan 11 04:00:00 1983

Notes core dumps when you try to modify an invalid entry.  This occurs
on the director's page.

The fix is simple; there is a missing break statement.  Add it right
around line 230:

		if (which > items || c < '0' || c > '9')/* check its validity */
		{
		    at (-2, 1);
		    printf ("Bad entry");
		    break;
		}
		which--;				/* adjust to zero base */