From 7d9049c2dfdbb9cd6e44bbcee5bc52ed79a2ee5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zef=20Kucia?= Date: Mon, 14 Sep 2015 00:13:39 +0200 Subject: [PATCH] dxgi/tests: Add missing DestroyWindow() call in test_createswapchain(). --- dlls/dxgi/tests/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dxgi/tests/device.c b/dlls/dxgi/tests/device.c index fe2c453d062..1e9507fa117 100644 --- a/dlls/dxgi/tests/device.c +++ b/dlls/dxgi/tests/device.c @@ -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)