rpcrt4: NdrStubGetBuffer shouldn't set BufferStart and BufferEnd.
These are supposed to point to the original buffer when the types were unmarshalled.
This commit is contained in:
parent
ded4b86625
commit
9d8ebc1a24
|
@ -595,7 +595,5 @@ void WINAPI NdrStubGetBuffer(LPRPCSTUBBUFFER iface,
|
|||
return;
|
||||
}
|
||||
|
||||
pStubMsg->BufferStart = pStubMsg->RpcMsg->Buffer;
|
||||
pStubMsg->BufferEnd = pStubMsg->BufferStart + pStubMsg->BufferLength;
|
||||
pStubMsg->Buffer = pStubMsg->BufferStart;
|
||||
pStubMsg->Buffer = pStubMsg->RpcMsg->Buffer;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue