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

Michael Stefaniuc mstefani at winehq.org
Sun Aug 29 07:00:16 CDT 2021


Signed-off-by: Michael Stefaniuc <mstefani 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)
-- 
2.31.1




More information about the wine-devel mailing list