1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(read_header): Give fatal error if input has no header.

This commit is contained in:
Richard M. Stallman 2006-04-29 18:52:23 +00:00
parent 41c8e348f2
commit 2ef88a94ea
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-04-29 Richard Stallman <rms@gnu.org>
* fakemail.c (read_header): Give fatal error if input has no header.
2006-04-02 Paul Eggert <eggert@cs.ucla.edu>
* b2m.c (main): Don't include <limits.h>.

View file

@ -694,6 +694,8 @@ read_header ()
} while (true);
if (! the_header)
fatal ("input message has no header");
return the_header->next;
}