Commit f8977578 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dmusic/tests: Remove an unused assigment (PVS-Studio).

parent 277b0905
......@@ -248,7 +248,7 @@ static void test_COM(void)
ok(hr == S_OK, "QueryInterface for IID_IDirectMusic failed: %08x\n", hr);
refcount = IDirectMusic_AddRef(dm);
ok(refcount == 4, "refcount == %u, expected 4\n", refcount);
refcount = IDirectMusic_Release(dm);
IDirectMusic_Release(dm);
hr = IDirectMusic8_QueryInterface(dm8, &IID_IUnknown, (void**)&unk);
ok(hr == S_OK, "QueryInterface for IID_IUnknown failed: %08x\n", hr);
......
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