quartz/tests: Fix interface leaks in filtergraph test.

This commit is contained in:
Alexander Dorofeyev 2008-07-17 20:25:13 +03:00 committed by Alexandre Julliard
parent 6645999337
commit 7c5a4481b1
1 changed files with 6 additions and 0 deletions

View File

@ -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();
}