From: Piotr Caban piotr@codeweavers.com
--- dlls/imm32/tests/imm32.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index 5b4e194c367..bd303def376 100644 --- a/dlls/imm32/tests/imm32.c +++ b/dlls/imm32/tests/imm32.c @@ -8071,9 +8071,7 @@ static void test_ime_ui_window( const char *argv0 ) startup.cb = sizeof(startup); CreateProcessA( NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info );
- wait_child_process( info.hProcess ); - CloseHandle( info.hProcess ); - CloseHandle( info.hThread ); + wait_child_process( &info ); }
START_TEST(imm32)