Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Yano <takashi.yano@nifty.ne.jp>2022-05-09 13:45:18 +0300
committerTakashi Yano <takashi.yano@nifty.ne.jp>2022-05-09 14:32:05 +0300
commit92b576dcc1577e2484c9ce484baa54de3bb60a55 (patch)
treed9ad5f079f945d8109a5b74c10bb90c6f5a6cdb7
parenta19161a6d3f2da706e6a6b3ea026d209848c3ad3 (diff)
Cygwin: pty: Avoid script command crash in console.
- Previously, script command sometimes crashes by Ctrl-C in Win 7 if it is running in console, and non-cygwin app is foreground. This patch fixes the issue.
-rw-r--r--winsup/cygwin/fhandler_tty.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index bb18d139e..9dfc3c495 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -4184,8 +4184,7 @@ fhandler_pty_common::attach_console_temporarily (DWORD target_pid)
{
FreeConsole ();
AttachConsole (target_pid);
- init_console_handler (::cygheap->ctty
- && ::cygheap->ctty->is_console ());
+ init_console_handler (false);
}
return console_exists ? resume_pid : (DWORD) -1;
}
@@ -4200,8 +4199,7 @@ fhandler_pty_common::resume_from_temporarily_attach (DWORD resume_pid)
if (console_exists)
if (!resume_pid || !AttachConsole (resume_pid))
AttachConsole (ATTACH_PARENT_PROCESS);
- init_console_handler (::cygheap->ctty
- && ::cygheap->ctty->is_console ());
+ init_console_handler (false);
}
release_attach_mutex ();
}