Michael Stefaniuc : dhtmled.ocx: Forward ConnectionPoint_Release() to a release method.

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


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

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

dhtmled.ocx: Forward ConnectionPoint_Release() to a release method.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dhtmled.ocx/edit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dhtmled.ocx/edit.c b/dlls/dhtmled.ocx/edit.c
index 9e08a4f5c95..226fc7856ed 100644
--- a/dlls/dhtmled.ocx/edit.c
+++ b/dlls/dhtmled.ocx/edit.c
@@ -1647,7 +1647,7 @@ static ULONG WINAPI ConnectionPoint_AddRef(IConnectionPoint *iface)
 static ULONG WINAPI ConnectionPoint_Release(IConnectionPoint *iface)
 {
     ConnectionPoint *This = impl_from_IConnectionPoint(iface);
-    return IConnectionPointContainer_AddRef(&This->dhed->IConnectionPointContainer_iface);
+    return IConnectionPointContainer_Release(&This->dhed->IConnectionPointContainer_iface);
 }
 
 static HRESULT WINAPI ConnectionPoint_GetConnectionInterface(IConnectionPoint *iface, IID *iid)




More information about the wine-cvs mailing list