*: do not check for POLLIN/POLLOUT only, just in case it's POLHUP/POLERR
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
d2f7779671
commit
88aa558e5c
4 changed files with 9 additions and 9 deletions
|
@ -119,7 +119,7 @@ int script_main(int argc UNUSED_PARAM, char **argv)
|
|||
* for example, try "script -c true" */
|
||||
break;
|
||||
}
|
||||
if (pfd[0].revents & POLLIN) {
|
||||
if (pfd[0].revents) {
|
||||
errno = 0;
|
||||
count = safe_read(pty, buf, sizeof(buf));
|
||||
if (count <= 0 && errno != EAGAIN) {
|
||||
|
@ -143,7 +143,7 @@ int script_main(int argc UNUSED_PARAM, char **argv)
|
|||
}
|
||||
}
|
||||
}
|
||||
if (pfd[1].revents & POLLIN) {
|
||||
if (pfd[1].revents) {
|
||||
count = safe_read(STDIN_FILENO, buf, sizeof(buf));
|
||||
if (count <= 0) {
|
||||
/* err/eof from stdin: don't read stdin anymore */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue