Module: wine Branch: master Commit: 7ef088b680d3db3c9b2f468ac1d7e561cc4a5638 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7ef088b680d3db3c9b2f468ac1...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sat May 1 22:19:08 2010 +0200
user32/tests: Destroy the window we created at the end of wait_idle_thread.
---
dlls/user32/tests/msg.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 714e57f..1b4a3cb 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -12275,6 +12275,7 @@ static DWORD CALLBACK wait_idle_thread( void *arg )
hwnd = CreateWindowExA(0, "TestClass", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL); while (GetMessage( &msg, 0, 0, 0 )) DispatchMessage( &msg ); + DestroyWindow(hwnd); return 0; }