diff options
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 29870c779..473c0c968 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -386,7 +386,8 @@ fhandler_pty_master::accept_input () } } - SetEvent (input_available_event); + if (write_to == get_output_handle ()) + SetEvent (input_available_event); ReleaseMutex (input_mutex); return ret; } |