Commit 0214ee8e authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

dpnet: Fix initialisation of This pointer (Coverity).

parent 9ee160cf
......@@ -65,7 +65,7 @@ static ULONG WINAPI IDirectPlay8ThreadPoolImpl_AddRef(PDIRECTPLAY8THREADPOOL ifa
static ULONG WINAPI IDirectPlay8ThreadPoolImpl_Release(PDIRECTPLAY8THREADPOOL iface)
{
IDirectPlay8ThreadPoolImpl* This = (IDirectPlay8ThreadPoolImpl*)This;
IDirectPlay8ThreadPoolImpl* This = (IDirectPlay8ThreadPoolImpl*)iface;
ULONG RefCount = InterlockedDecrement(&This->ref);
if(!RefCount)
......
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