Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1d2c29df
Commit
1d2c29df
authored
Oct 06, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conhost: Don't create tty input thread if we don't have tty_input handle.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a9001784
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
conhost.c
programs/conhost/conhost.c
+1
-0
No files found.
programs/conhost/conhost.c
View file @
1d2c29df
...
...
@@ -1719,6 +1719,7 @@ done:
static
BOOL
ensure_tty_input_thread
(
struct
console
*
console
)
{
if
(
!
console
->
tty_input
)
return
TRUE
;
if
(
!
console
->
input_thread
)
console
->
input_thread
=
CreateThread
(
NULL
,
0
,
tty_input
,
console
,
0
,
NULL
);
return
console
->
input_thread
!=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment