[PATCH] mf/tests: Fix mediatype instance leak (Coverity).

Nikolay Sivov nsivov at codeweavers.com
Mon Apr 12 09:10:40 CDT 2021


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/mf/tests/mf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c
index 308c1fae529..a5c306a93a0 100644
--- a/dlls/mf/tests/mf.c
+++ b/dlls/mf/tests/mf.c
@@ -5237,6 +5237,7 @@ static void test_MFRequireProtectedEnvironment(void)
     hr = MFRequireProtectedEnvironment(pd);
     ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
 
+    IMFMediaType_Release(mediatype);
     IMFStreamDescriptor_Release(sd);
     IMFPresentationDescriptor_Release(pd);
 }
-- 
2.30.2




More information about the wine-devel mailing list