=================================================================== RCS file: /cvs/mandoc/Attic/mdocml.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mandoc/Attic/mdocml.c 2008/11/23 19:10:03 1.7 +++ mandoc/Attic/mdocml.c 2008/11/23 22:30:53 1.8 @@ -1,4 +1,4 @@ -/* $Id: mdocml.c,v 1.7 2008/11/23 19:10:03 kristaps Exp $ */ +/* $Id: mdocml.c,v 1.8 2008/11/23 22:30:53 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -166,6 +166,9 @@ begin_bufs(const struct md_args *args, if (-1 == fstat(in->fd, &stin)) { warn("%s", in->name); + return(1); + } else if (0 == stin.st_size) { + warnx("%s: empty file", in->name); return(1); } else if (-1 == fstat(out->fd, &stout)) { warn("%s", out->name);