Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site sdcsvax.UUCP
Path: utzoo!watmath!clyde!burl!mgnetp!ihnp4!zehntel!dual!amd!decwrl!decvax!ittvax!dcdwest!sdcsvax!phil
From: phil@sdcsvax.UUCP
Newsgroups: net.bugs.uucp
Subject: uucp dies after 20 files
Message-ID: <1077@sdcsvax.UUCP>
Date: Fri, 3-Aug-84 09:58:59 EDT
Article-I.D.: sdcsvax.1077
Posted: Fri Aug  3 09:58:59 1984
Date-Received: Sun, 5-Aug-84 05:47:33 EDT
Organization: EECS Dept. U.C. San Diego
Lines: 17


Well.... the results are in.
At least 20 of you suggested that uucp was bombing due 
to a missing fclose call.   I had guessed the same thing, but
that was not it.

The actual bug was in anlwrk.c and the fix is illustrated below.
We are running 4.1 bsd...


67c67
< 	if (listp == NULL || *listp == NULL || listp > (list + LLEN)
---
> 	if (listp == NULL || listp >= (list + LLEN) || *listp == NULL