Module: wine Branch: refs/heads/master Commit: a4fff73ba3c51521dd3e97ca2c6fb00339005c1b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a4fff73ba3c51521dd3e97ca...
Author: Robert Shearman rob@codeweavers.com Date: Fri Jun 2 20:45:40 2006 +0100
rpcrt4: Fix an incorrect format string pointer being passed in to ComputeVariance in NdrConformantVaryingStructBufferSize.
---
dlls/rpcrt4/ndr_marshall.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 240ca75..96e923c 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -3147,7 +3147,7 @@ void WINAPI NdrConformantVaryingStructBu 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));