[PATCH] user32/tests: Fix resource leak.

Andrey Gusev andrey.goosev at gmail.com
Wed Jan 3 09:36:03 CST 2018


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/user32/tests/input.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c
index 030592b02f..e52f7d215f 100644
--- a/dlls/user32/tests/input.c
+++ b/dlls/user32/tests/input.c
@@ -2055,6 +2055,7 @@ static void test_Input_mouse(void)
     }
     SetEvent(thread_data.end_event);
     WaitForSingleObject(thread, INFINITE);
+    CloseHandle(thread);
     ok(hittest_no && hittest_no<50, "expected WM_NCHITTEST message\n");
     ok(!got_button_down, "unexpected WM_RBUTTONDOWN message\n");
     ok(!got_button_up, "unexpected WM_RBUTTONUP message\n");
-- 
2.13.6




More information about the wine-devel mailing list