Commit 66459993 authored by Alexander Dorofeyev's avatar Alexander Dorofeyev Committed by Alexandre Julliard

quartz: Fix interface leak in FilterGraph2_RemoveFilter.

parent 4afad0a4
...@@ -515,6 +515,8 @@ static HRESULT WINAPI FilterGraph2_RemoveFilter(IFilterGraph2 *iface, IBaseFilte ...@@ -515,6 +515,8 @@ static HRESULT WINAPI FilterGraph2_RemoveFilter(IFilterGraph2 *iface, IBaseFilte
} }
h = IPin_Disconnect(ppin); h = IPin_Disconnect(ppin);
TRACE("Disconnect 2: %08x\n", h); TRACE("Disconnect 2: %08x\n", h);
IPin_Release(ppin);
} }
IEnumPins_Release(penumpins); IEnumPins_Release(penumpins);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment