On 07/03/2016 02:20 AM, Jason Zaman wrote: > There is a signal handler so that the select returns EINTR when the > child exits. EINTR is used to then clean up and flush the remaining > buffers. It should not error. > > Signed-off-by: Jason Zaman <jason@xxxxxxxxxxxxx> Thanks, applied. > --- > policycoreutils/run_init/open_init_pty.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/policycoreutils/run_init/open_init_pty.c b/policycoreutils/run_init/open_init_pty.c > index 37805bf..6e25ea3 100644 > --- a/policycoreutils/run_init/open_init_pty.c > +++ b/policycoreutils/run_init/open_init_pty.c > @@ -327,8 +327,9 @@ int main(int argc, char *argv[]) > break; > } > > + errno = 0; > int select_rc = select(pty_master + 1, &readfds, &writefds, NULL, NULL); > - if (select_rc < 0) { > + if (select_rc < 0 && errno != EINTR) { > perror("select()"); > exit(EX_IOERR); > } > _______________________________________________ Selinux mailing list Selinux@xxxxxxxxxxxxx To unsubscribe, send email to Selinux-leave@xxxxxxxxxxxxx. To get help, send an email containing "help" to Selinux-request@xxxxxxxxxxxxx.