dxgi/tests: Add missing DestroyWindow() call in test_createswapchain().

This commit is contained in:
Józef Kucia 2015-09-14 00:13:39 +02:00 committed by Alexandre Julliard
parent cee4d0bb91
commit 7d9049c2df
1 changed files with 1 additions and 0 deletions

View File

@ -520,6 +520,7 @@ static void test_createswapchain(void)
IUnknown_Release(obj);
refcount = IDXGIDevice_Release(device);
ok(!refcount, "Device has %u references left.\n", refcount);
DestroyWindow(creation_desc.OutputWindow);
}
static void test_create_factory(void)