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

Alexandre Julliard julliard at wine.codeweavers.com
Sat Jun 3 05:24:34 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: a4fff73ba3c51521dd3e97ca2c6fb00339005c1b
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=a4fff73ba3c51521dd3e97ca2c6fb00339005c1b

Author: Robert Shearman <rob at 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));




More information about the wine-cvs mailing list