Michael Stefaniuc : quartz: Forward dsound_render_qc_Release() to a release method.

Alexandre Julliard julliard at winehq.org
Mon Aug 30 15:53:53 CDT 2021


Module: wine
Branch: master
Commit: 21c4a25437969696cbf5ffecee191ba8302bb2dd
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=21c4a25437969696cbf5ffecee191ba8302bb2dd

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Sun Aug 29 14:00:17 2021 +0200

quartz: Forward dsound_render_qc_Release() to a release method.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/quartz/dsoundrender.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/quartz/dsoundrender.c b/dlls/quartz/dsoundrender.c
index 3a6b7764634..51a66ac5d30 100644
--- a/dlls/quartz/dsoundrender.c
+++ b/dlls/quartz/dsoundrender.c
@@ -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,




More information about the wine-cvs mailing list