threadpoolwinrt: Forward a Release() to a Release() method.

This commit is contained in:
Michael Stefaniuc 2023-04-25 18:59:16 +02:00 committed by Alexandre Julliard
parent da16581e63
commit 572a9f6a68

View file

@ -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)