summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-02-23 16:47:10 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-02-23 16:47:10 +0000
commita233afb35d3281662cd0deb51ea225388068e3b8 (patch)
tree3537170e033f09c51e7d31ae70ba48542ce1e5cc /main.c
parent877d53b1f1db96eab611192f0f83cfd3817340f7 (diff)
downloadmandoc-a233afb35d3281662cd0deb51ea225388068e3b8.tar.gz
Invalidate the tag_files.tfd after fclose(3)ing the stram associated
with it. In main() assert that the tfd was actually invalidated. This avoids closing an invalid fd. From tb@; OK deraadt@ on an earlier version.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 308f7fb5..f7c15494 100644
--- a/main.c
+++ b/main.c
@@ -1184,7 +1184,7 @@ spawn_pager(struct tag_files *tag_files)
if (dup2(tag_files->ofd, STDOUT_FILENO) == -1)
err((int)MANDOCLEVEL_SYSERR, "pager stdout");
close(tag_files->ofd);
- close(tag_files->tfd);
+ assert(tag_files->tfd == -1);
/* Do not start the pager before controlling the terminal. */