Commit 21c4a254 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

quartz: Forward dsound_render_qc_Release() to a release method.

parent 602a36a2
......@@ -955,7 +955,7 @@ static ULONG WINAPI dsound_render_qc_AddRef(IQualityControl *iface)
static ULONG WINAPI dsound_render_qc_Release(IQualityControl *iface)
{
struct dsound_render *filter = impl_from_IQualityControl(iface);
return IUnknown_AddRef(filter->filter.outer_unk);
return IUnknown_Release(filter->filter.outer_unk);
}
static HRESULT WINAPI dsound_render_qc_Notify(IQualityControl *iface,
......
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