Module: wine Branch: master Commit: 572a9f6a68c3ab4ac2dad54f279d8d239492b685 URL: https://gitlab.winehq.org/wine/wine/-/commit/572a9f6a68c3ab4ac2dad54f279d8d2...
Author: Michael Stefaniuc mstefani@winehq.org Date: Tue Apr 25 18:59:16 2023 +0200
threadpoolwinrt: Forward a Release() to a Release() method.
---
dlls/threadpoolwinrt/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/threadpoolwinrt/main.c b/dlls/threadpoolwinrt/main.c index 9fa475487ca..fb59a777e30 100644 --- a/dlls/threadpoolwinrt/main.c +++ b/dlls/threadpoolwinrt/main.c @@ -202,7 +202,7 @@ static ULONG STDMETHODCALLTYPE async_info_AddRef(IAsyncInfo *iface) static ULONG STDMETHODCALLTYPE async_info_Release(IAsyncInfo *iface) { struct async_action *action = impl_from_IAsyncInfo(iface); - return IAsyncAction_AddRef(&action->IAsyncAction_iface); + return IAsyncAction_Release(&action->IAsyncAction_iface); }
static HRESULT STDMETHODCALLTYPE async_info_GetIids(IAsyncInfo *iface, ULONG *iid_count, IID **iids)