Michael Stefaniuc : dmscript/tests: Remove an unused assigment (PVS-Studio ).

Alexandre Julliard julliard at wine.codeweavers.com
Thu Jan 15 15:55:42 CST 2015


Module: wine
Branch: master
Commit: d84659cad75be0ea169171cdc86b2d9625268aad
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d84659cad75be0ea169171cdc86b2d9625268aad

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Thu Jan 15 13:01:08 2015 +0100

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

---

 dlls/dmscript/tests/dmscript.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dmscript/tests/dmscript.c b/dlls/dmscript/tests/dmscript.c
index 02fddc3..59858d5 100644
--- a/dlls/dmscript/tests/dmscript.c
+++ b/dlls/dmscript/tests/dmscript.c
@@ -164,7 +164,7 @@ static void test_COM_scripttrack(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(dmt, &IID_IUnknown, (void**)&unk);
     ok(hr == S_OK, "QueryInterface for IID_IUnknown failed: %08x\n", hr);




More information about the wine-cvs mailing list