mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
Rob Shearman : rpcrt4: Set the fBufferValid flag in NdrProxyGetBuffer. <rob at codeweavers.com>
svn path=/trunk/; revision=31848
This commit is contained in:
parent
714d031d4f
commit
e83b5427a6
1 changed files with 7 additions and 4 deletions
|
@ -364,6 +364,7 @@ void WINAPI NdrProxyGetBuffer(void *This,
|
|||
RpcRaiseException(hr);
|
||||
return;
|
||||
}
|
||||
pStubMsg->fBufferValid = TRUE;
|
||||
pStubMsg->BufferStart = pStubMsg->RpcMsg->Buffer;
|
||||
pStubMsg->BufferEnd = pStubMsg->BufferStart + pStubMsg->BufferLength;
|
||||
pStubMsg->Buffer = pStubMsg->BufferStart;
|
||||
|
@ -408,11 +409,13 @@ void WINAPI NdrProxySendReceive(void *This,
|
|||
void WINAPI NdrProxyFreeBuffer(void *This,
|
||||
PMIDL_STUB_MESSAGE pStubMsg)
|
||||
{
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p,%p)\n", This, pStubMsg);
|
||||
hr = IRpcChannelBuffer_FreeBuffer(pStubMsg->pRpcChannelBuffer,
|
||||
(RPCOLEMESSAGE*)pStubMsg->RpcMsg);
|
||||
if (pStubMsg->fBufferValid)
|
||||
{
|
||||
IRpcChannelBuffer_FreeBuffer(pStubMsg->pRpcChannelBuffer,
|
||||
(RPCOLEMESSAGE*)pStubMsg->RpcMsg);
|
||||
pStubMsg->fBufferValid = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in a new issue