mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-03-03 13:35:46 +08:00
Cygwin: console: Fix garbled input for non-ASCII chars.
- After the commit ff4440fc, non-ASCII input may sometimes be garbled. This patch fixes the issue. Addresses: https://cygwin.com/pipermail/cygwin/2021-June/248775.html
This commit is contained in:
parent
204ee3cf6a
commit
1b242c12aa
@ -213,7 +213,7 @@ fhandler_console::cons_master_thread (handle_set_t *p, tty *ttyp)
|
||||
switch (cygwait (p->input_handle, (DWORD) 0))
|
||||
{
|
||||
case WAIT_OBJECT_0:
|
||||
ReadConsoleInputA (p->input_handle,
|
||||
ReadConsoleInputW (p->input_handle,
|
||||
input_rec, INREC_SIZE, &total_read);
|
||||
break;
|
||||
case WAIT_TIMEOUT:
|
||||
@ -326,7 +326,7 @@ fhandler_console::cons_master_thread (handle_set_t *p, tty *ttyp)
|
||||
}
|
||||
if (total_read)
|
||||
/* Write back input records other than interrupt. */
|
||||
WriteConsoleInput (p->input_handle, input_rec, total_read, &n);
|
||||
WriteConsoleInputW (p->input_handle, input_rec, total_read, &n);
|
||||
skip_writeback:
|
||||
ReleaseMutex (p->input_mutex);
|
||||
cygwait (40);
|
||||
|
Loading…
x
Reference in New Issue
Block a user