[PATCH] dinput: Wait for the internal thread with a timeout.

Rémi Bernon rbernon at codeweavers.com
Thu Jan 6 03:51:47 CST 2022


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52263
Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---

Instead of 222958-222964, as a temporary solution.

 dlls/dinput/dinput_main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dinput/dinput_main.c b/dlls/dinput/dinput_main.c
index a62d4d2ea3d..8347e3aa586 100644
--- a/dlls/dinput/dinput_main.c
+++ b/dlls/dinput/dinput_main.c
@@ -1379,7 +1379,8 @@ static void dinput_thread_start(void)
 static void dinput_thread_stop(void)
 {
     PostThreadMessageW( dinput_thread_id, WM_USER + 0x10, 0, 0 );
-    WaitForSingleObject( dinput_thread, INFINITE );
+    if (WaitForSingleObject( dinput_thread, 500 ) == WAIT_TIMEOUT)
+        WARN("Timeout while waiting for internal thread\n");
     CloseHandle( dinput_thread );
 }
 
-- 
2.34.1




More information about the wine-devel mailing list