From 7c5a4481b176c432a1faf9d9d47c371ef40ce500 Mon Sep 17 00:00:00 2001 From: Alexander Dorofeyev Date: Thu, 17 Jul 2008 20:25:13 +0300 Subject: [PATCH] quartz/tests: Fix interface leaks in filtergraph test. --- dlls/quartz/tests/filtergraph.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c index 103cfa10791..e39097baef9 100644 --- a/dlls/quartz/tests/filtergraph.c +++ b/dlls/quartz/tests/filtergraph.c @@ -196,6 +196,12 @@ static void test_graph_builder(void) ok(pF2 != NULL, "IGraphBuilder_FindFilterByName returned NULL\n"); hr = IGraphBuilder_FindFilterByName(pgraph, testFilterW, NULL); ok(hr == E_POINTER, "IGraphBuilder_FindFilterByName returned %x\n", hr); + + if (pIn) IPin_Release(pIn); + if (pEnum) IEnumPins_Release(pEnum); + if (pF) IBaseFilter_Release(pF); + if (pF2) IBaseFilter_Release(pF2); + releasefiltergraph(); } -- 2.11.4.GIT