From daa46639809a6ff677242f16a3a4b89ab7421557 Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Wed, 3 Jan 2018 17:36:03 +0200 Subject: [PATCH] user32/tests: Fix resource leak. Signed-off-by: Andrey Gusev Signed-off-by: Alexandre Julliard --- 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 030592b02f2..e52f7d215f2 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");