Module: wine Branch: master Commit: 59be6e06000fe7424856697544b47c017acad993 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=59be6e06000fe74248566975...
Author: Huw Davies huw@codeweavers.com Date: Thu Aug 17 15:31:32 2006 +0100
rpcrt4: Remember to skip over the conformance description.
---
dlls/rpcrt4/ndr_marshall.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 9657ab9..b83fd1e 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -2365,6 +2365,8 @@ void WINAPI NdrConformantArrayFree(PMIDL TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat); if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
+ pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0); + EmbeddedPointerFree(pStubMsg, pMemory, pFormat); }