Sebastian Lackner : user32/tests: Add a missing call to ReleaseActCtx().
Module: wine Branch: master Commit: 34f8053efe0c1e7ec11fd98e3de78e07cad6d335 URL: http://source.winehq.org/git/wine.git/?a=commit;h=34f8053efe0c1e7ec11fd98e3d... Author: Sebastian Lackner <sebastian(a)fds-team.de> Date: Mon Jun 23 06:29:09 2014 +0200 user32/tests: Add a missing call to ReleaseActCtx(). --- dlls/user32/tests/msg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 66b9c7e..6badca1 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -7024,6 +7024,7 @@ static void test_interthread_messages(void) ret = pGetCurrentActCtx(&handle); ok(ret, "GetCurentActCtx failed: %u\n", GetLastError()); ok(handle != 0, "active context %p\n", handle); + pReleaseActCtx(handle); /* destination window will test for active context */ ret = SendMessageA(wnd_event.hwnd, WM_USER+10, 0, 0);
participants (1)
-
Alexandre Julliard