Formerly read.c.~72~

This commit is contained in:
Roland McGrath 1993-12-23 22:56:05 +00:00
parent db98fe95a4
commit 2932fb1bca

5
read.c
View file

@ -1617,6 +1617,11 @@ parse_file_seq (stringp, stopchar, size, strip)
new1->name = name;
new1 = new1->next;
}
if (new1 == 0)
/* We might have slurped up the whole list,
and continuing the loop would dereference NEW1. */
break;
}
}