Commit d862b40a authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3dx9_36: Check wnd just after CreateWindow. Remove useless wnd check before calling DestroyWindow.

parent bccfd7cc
......@@ -498,11 +498,11 @@ START_TEST(surface)
HRESULT hr;
wnd = CreateWindow("static", "d3dx9_test", 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
d3d = Direct3DCreate9(D3D_SDK_VERSION);
if (!wnd) {
skip("Couldn't create application window\n");
return;
}
d3d = Direct3DCreate9(D3D_SDK_VERSION);
if (!d3d) {
skip("Couldn't create IDirect3D9 object\n");
DestroyWindow(wnd);
......@@ -525,5 +525,5 @@ START_TEST(surface)
check_release((IUnknown*)device, 0);
check_release((IUnknown*)d3d, 0);
if (wnd) DestroyWindow(wnd);
DestroyWindow(wnd);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment