rpcrt4: Fix the return value from NdrSimpleStructMemorySize.

This commit is contained in:
Rob Shearman 2007-12-08 17:46:48 +00:00 committed by Alexandre Julliard
parent 3a13de3115
commit d7a0de303e
1 changed files with 1 additions and 1 deletions

View File

@ -1776,7 +1776,7 @@ ULONG WINAPI NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
if (pFormat[0] != RPC_FC_STRUCT)
EmbeddedPointerMemorySize(pStubMsg, pFormat+4);
return size;
return pStubMsg->MemorySize;
}
/***********************************************************************