[newlib-cygwin] Cygwin: console: Fix code for restoring console mode.

Corinna Vinschen corinna@sourceware.org
Mon Feb 17 12:57:00 GMT 2020


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=c16e73043ee4249871bd2113dc71dac0b7c08c90

commit c16e73043ee4249871bd2113dc71dac0b7c08c90
Author: Takashi Yano <takashi.yano@nifty.ne.jp>
Date:   Mon Feb 17 21:46:27 2020 +0900

    Cygwin: console: Fix code for restoring console mode.
    
    - Commit 774b8996d1f3e535e8267be4eb8e751d756c2cec has a bug that
      restores console output mode into console input. This patch fixes
      the issue.

Diff:
---
 winsup/cygwin/fhandler_console.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index 2afb5c5..9bfee64 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -1122,7 +1122,7 @@ fhandler_console::close ()
 			  &obi, sizeof obi, NULL);
   if (NT_SUCCESS (status) && obi.HandleCount == 1)
     if (orig_conout_mode != (DWORD) -1)
-      SetConsoleMode (get_handle (), orig_conout_mode);
+      SetConsoleMode (get_output_handle (), orig_conout_mode);
 
   release_output_mutex ();



More information about the Cygwin-cvs mailing list