[PATCH v2 6/9] ddraw/tests: Test ddraw2 CreateSurface with a null descriptor.

Alex Henrie alexhenrie24 at gmail.com
Wed Feb 15 21:46:56 CST 2017


Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
 dlls/ddraw/tests/ddraw2.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dlls/ddraw/tests/ddraw2.c b/dlls/ddraw/tests/ddraw2.c
index 8af657980c..4812d966d8 100644
--- a/dlls/ddraw/tests/ddraw2.c
+++ b/dlls/ddraw/tests/ddraw2.c
@@ -2113,6 +2113,11 @@ static void test_surface_qi(void)
     }
     IDirect3DDevice_Release(device);
 
+    surface = (IDirectDrawSurface *)0xdeadbeef;
+    hr = IDirectDraw2_CreateSurface(ddraw, NULL, &surface, NULL);
+    ok(hr == DDERR_INVALIDPARAMS, "Got unexpected hr %#x.\n", hr);
+    ok(surface == (IDirectDrawSurface *)0xdeadbeef, "Got unexpected surface %p\n", surface);
+
     memset(&surface_desc, 0, sizeof(surface_desc));
     surface_desc.dwSize = sizeof(surface_desc);
     surface_desc.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT;
-- 
2.11.1




More information about the wine-patches mailing list