Module: wine Branch: master Commit: cc199b777e734f44c99b8af0f63c7a8ca36c4ffa URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc199b777e734f44c99b8af0f6...
Author: Rob Shearman robertshearman@gmail.com Date: Sun Jun 22 09:42:08 2008 +0100
rpcrt4: Initialise UniquePtrCount in NdrServerInitializeNew.
---
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 3aefab9..9af736a 100644 --- a/dlls/rpcrt4/ndr_clientserver.c +++ b/dlls/rpcrt4/ndr_clientserver.c @@ -121,6 +121,7 @@ unsigned char* WINAPI NdrServerInitializeNew( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_M pStubMsg->IgnoreEmbeddedPointers = 0; pStubMsg->PointerBufferMark = NULL; pStubMsg->uFlags = 0; + pStubMsg->UniquePtrCount = 0; pStubMsg->pfnAllocate = pStubDesc->pfnAllocate; pStubMsg->pfnFree = pStubDesc->pfnFree; pStubMsg->StackTop = NULL;