Commit 485d8362 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

hlink: Call AddRef of correct interface in ExtServUnk_QueryInterface.

parent 2c159131
......@@ -63,7 +63,7 @@ static HRESULT WINAPI ExtServUnk_QueryInterface(IUnknown *iface, REFIID riid, vo
}
if(*ppv) {
IUnknown_AddRef(EXTSERVUNK(This));
IUnknown_AddRef((IUnknown*)*ppv);
return S_OK;
}
......
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