Commit ea82d4ee authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

d2d1/tests: Add a missing return value test (Coverity).

parent c94be046
......@@ -12008,7 +12008,8 @@ static void test_registered_effects(BOOL d3d11)
free(effects);
ID2D1Factory1_UnregisterEffect(factory, &CLSID_TestEffect);
hr = ID2D1Factory1_UnregisterEffect(factory, &CLSID_TestEffect);
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
count2 = 0;
hr = ID2D1Factory1_GetRegisteredEffects(factory, NULL, 0, NULL, &count2);
......
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