=================================================================== RCS file: /cvs/mandoc/read.c,v retrieving revision 1.95 retrieving revision 1.97 diff -u -p -r1.95 -r1.97 --- mandoc/read.c 2014/11/01 04:08:43 1.95 +++ mandoc/read.c 2014/11/26 21:40:17 1.97 @@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.95 2014/11/01 04:08:43 schwarze Exp $ */ +/* $Id: read.c,v 1.97 2014/11/26 21:40:17 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2014 Ingo Schwarze @@ -64,6 +64,7 @@ struct mparse { int filenc; /* encoding of the current file */ int reparse_count; /* finite interp. stack */ int line; /* line number in the file */ + pid_t child; /* the gunzip(1) process */ }; static void choose_parser(struct mparse *); @@ -493,8 +494,7 @@ mparse_buf_r(struct mparse *curp, struct buf blk, size [curp->secondary->sz] = '\0'; } rerun: - rr = roff_parseln(curp->roff, curp->line, - &ln.buf, &ln.sz, of, &of); + rr = roff_parseln(curp->roff, curp->line, &ln, &of); switch (rr) { case ROFF_REPARSE: @@ -824,8 +824,7 @@ mparse_readfd(struct mparse *curp, int fd, const char } enum mandoclevel -mparse_open(struct mparse *curp, int *fd, const char *file, - pid_t *child_pid) +mparse_open(struct mparse *curp, int *fd, const char *file) { int pfd[2]; char *cp; @@ -835,7 +834,7 @@ mparse_open(struct mparse *curp, int *fd, const char * curp->file = file; if ((cp = strrchr(file, '.')) == NULL || strcmp(cp + 1, "gz")) { - *child_pid = 0; + curp->child = 0; if ((*fd = open(file, O_RDONLY)) == -1) { err = MANDOCERR_SYSOPEN; goto out; @@ -848,7 +847,7 @@ mparse_open(struct mparse *curp, int *fd, const char * goto out; } - switch (*child_pid = fork()) { + switch (curp->child = fork()) { case -1: err = MANDOCERR_SYSFORK; close(pfd[0]); @@ -872,7 +871,7 @@ mparse_open(struct mparse *curp, int *fd, const char * out: *fd = -1; - *child_pid = 0; + curp->child = 0; curp->file_status = MANDOCLEVEL_SYSERR; if (curp->mmsg) (*curp->mmsg)(err, curp->file_status, file, @@ -883,11 +882,14 @@ out: } enum mandoclevel -mparse_wait(struct mparse *curp, pid_t child_pid) +mparse_wait(struct mparse *curp) { int status; - if (waitpid(child_pid, &status, 0) == -1) { + if (curp->child == 0) + return(MANDOCLEVEL_OK); + + if (waitpid(curp->child, &status, 0) == -1) { mandoc_msg(MANDOCERR_SYSWAIT, curp, 0, 0, strerror(errno)); curp->file_status = MANDOCLEVEL_SYSERR;