rpcrt4: Fix an incorrect format string pointer being passed in to

ComputeVariance in NdrConformantVaryingStructBufferSize.
This commit is contained in:
Robert Shearman 2006-06-02 20:45:40 +01:00 committed by Alexandre Julliard
parent 6a11aba526
commit a4fff73ba3
1 changed files with 1 additions and 1 deletions

View File

@ -3147,7 +3147,7 @@ void WINAPI NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
pCVArrayFormat + 4, 0);
pCVArrayFormat = ComputeVariance(pStubMsg, pMemory + pCVStructFormat->memory_size,
pCVArrayFormat + 4, 0);
pCVArrayFormat, 0);
break;
case RPC_FC_C_CSTRING:
TRACE("string=%s\n", debugstr_a((char*)pMemory + pCVStructFormat->memory_size));