mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
ole32: If IRpcStubBuffer_Invoke fails, we should raise an exception to
tell the RPC runtime that the call failed.
This commit is contained in:
parent
3d4e9d6a71
commit
c60c28cf08
@ -569,9 +569,14 @@ static void __RPC_STUB dispatch_rpc(RPC_MESSAGE *msg)
|
||||
}
|
||||
}
|
||||
|
||||
hr = params->hr;
|
||||
HeapFree(GetProcessHeap(), 0, params);
|
||||
|
||||
apartment_release(apt);
|
||||
|
||||
/* if IRpcStubBuffer_Invoke fails, we should raise an exception to tell
|
||||
* the RPC runtime that the call failed */
|
||||
if (hr) RpcRaiseException(hr);
|
||||
}
|
||||
|
||||
/* stub registration */
|
||||
|
Loading…
Reference in New Issue
Block a user