summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Yano <takashi.yano@nifty.ne.jp>2020-01-23 20:34:25 +0900
committerCorinna Vinschen <corinna@vinschen.de>2020-01-23 13:32:26 +0100
commit5fdcb8fc135a14846cc37d30cb11d1590e5113b8 (patch)
treeb9e20bfca5a5310cb45ae425cd0a0343a29ee8c0
parent6d79e0a58866548f435527798fbd4a6849d05bc7 (diff)
downloadcygnal-5fdcb8fc135a14846cc37d30cb11d1590e5113b8.tar.gz
cygnal-5fdcb8fc135a14846cc37d30cb11d1590e5113b8.tar.bz2
cygnal-5fdcb8fc135a14846cc37d30cb11d1590e5113b8.zip
Cygwin: pty: Remove close() call just before reopening slave.
- After commit da4ee7d60b9ff0bcdc081609a4467adb428d58e6, the issue reported in https://www.cygwin.com/ml/cygwin/2020-01/msg00209.html occurs. This patch fixes the issue.
-rw-r--r--winsup/cygwin/fhandler_tty.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index 1710f2520..4977a8bd5 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -1281,7 +1281,6 @@ fhandler_pty_slave::push_to_pcon_screenbuffer (const char *ptr, size_t len)
{
termios_printf ("GetConsoleMode failed, %E");
/* Re-open handles */
- this->close ();
this->open (0, 0);
/* Fix pseudo console window size */
this->ioctl (TIOCSWINSZ, &get_ttyp ()->winsize);