From 59be6e06000fe7424856697544b47c017acad993 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Thu, 17 Aug 2006 15:31:32 +0100 Subject: [PATCH] rpcrt4: Remember to skip over the conformance description. --- dlls/rpcrt4/ndr_marshall.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 9657ab979c..b83fd1e5aa 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -2365,6 +2365,8 @@ void WINAPI NdrConformantArrayFree(PMIDL_STUB_MESSAGE pStubMsg, 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); }