Module: wine Branch: master Commit: 6cf9e441ad6402672185c901dc7b86e874d798f4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6cf9e441ad6402672185c901dc...
Author: Rob Shearman robertshearman@gmail.com Date: Fri Jun 20 10:15:03 2008 +0100
rpcrt4: Initialise UniquePtrCount 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 1afab2a..34d6898 100644 --- a/dlls/rpcrt4/ndr_clientserver.c +++ b/dlls/rpcrt4/ndr_clientserver.c @@ -69,6 +69,7 @@ void WINAPI NdrClientInitializeNew( PRPC_MESSAGE pRpcMessage, PMIDL_STUB_MESSAGE pStubMsg->PointerBufferMark = NULL; pStubMsg->fBufferValid = 0; pStubMsg->uFlags = 0; + pStubMsg->UniquePtrCount = 0; pStubMsg->pfnAllocate = pStubDesc->pfnAllocate; pStubMsg->pfnFree = pStubDesc->pfnFree; pStubMsg->StackTop = NULL;