Commit 572a9f6a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent da16581e
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment