From 963102fd89ebe134bc1d155e0810c717796385ce Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Sat, 24 Apr 2010 08:07:28 +0200 Subject: [PATCH] winmm: Fix handle leak in timer tests. --- dlls/winmm/tests/timer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/winmm/tests/timer.c b/dlls/winmm/tests/timer.c index 7ac86b99371..be63f6b032a 100644 --- a/dlls/winmm/tests/timer.c +++ b/dlls/winmm/tests/timer.c @@ -190,6 +190,7 @@ static void test_priority(void) "thread priority is %s, should be THREAD_PRIORITY_TIME_CRITICAL\n", get_priority(priority)); } + timeKillEvent(id); } START_TEST(timer)