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

oldstable
Michael Stefaniuc 2015-01-15 12:02:26 +01:00 committed by Alexandre Julliard
parent 7e169d43c5
commit 468cb274d1
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ static void test_COM_bandtrack(void)
ok(hr == S_OK, "QueryInterface for IID_IPersistStream failed: %08x\n", hr);
refcount = IPersistStream_AddRef(ps);
ok(refcount == 4, "refcount == %u, expected 4\n", refcount);
refcount = IPersistStream_Release(ps);
IPersistStream_Release(ps);
hr = IDirectMusicTrack_QueryInterface(dmbt, &IID_IUnknown, (void**)&unk);
ok(hr == S_OK, "QueryInterface for IID_IUnknown failed: %08x\n", hr);