Module: wine Branch: master Commit: e2e79167390c711de19c66a53cd0db3c2a04a7a0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e2e79167390c711de19c66a53c... Author: Rob Shearman <rob(a)codeweavers.com> Date: Mon Jan 7 15:21:27 2008 +0000 rpcrt4: Set ReservedForRuntime to NULL in NdrClientInitializeNew. --- dlls/rpcrt4/ndr_clientserver.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/rpcrt4/ndr_clientserver.c b/dlls/rpcrt4/ndr_clientserver.c index 8cce9d7..fc44ef7 100644 --- a/dlls/rpcrt4/ndr_clientserver.c +++ b/dlls/rpcrt4/ndr_clientserver.c @@ -57,6 +57,7 @@ void WINAPI NdrClientInitializeNew( PRPC_MESSAGE pRpcMessage, PMIDL_STUB_MESSAGE pRpcMessage->ProcNum = ProcNum | RPC_FLAGS_VALID_BIT; pRpcMessage->RpcInterfaceInformation = pStubDesc->RpcInterfaceInformation; pRpcMessage->RpcFlags = 0; + pRpcMessage->ReservedForRuntime = NULL; pRpcMessage->DataRepresentation = NDR_LOCAL_DATA_REPRESENTATION; pStubMsg->RpcMsg = pRpcMessage;