Commit 567e49f2 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

rpcrt4: Use proper helper for IRpcStubBuffer call.

parent 7931c23f
...@@ -372,7 +372,7 @@ HRESULT WINAPI CStdStubBuffer_QueryInterface(LPRPCSTUBBUFFER iface, ...@@ -372,7 +372,7 @@ HRESULT WINAPI CStdStubBuffer_QueryInterface(LPRPCSTUBBUFFER iface,
if (IsEqualIID(&IID_IUnknown, riid) || if (IsEqualIID(&IID_IUnknown, riid) ||
IsEqualIID(&IID_IRpcStubBuffer, riid)) IsEqualIID(&IID_IRpcStubBuffer, riid))
{ {
IUnknown_AddRef(iface); IRpcStubBuffer_AddRef(iface);
*obj = iface; *obj = iface;
return S_OK; 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