From e3df112a39467d9ac6f71af82db45e84b33c9e63 Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Fri, 9 Jun 2006 17:25:07 +0100 Subject: [PATCH] rpcrt4: Don't raise an exception if there is no freer function - not all types have a freer. --- dlls/rpcrt4/ndr_stubless.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/rpcrt4/ndr_stubless.c b/dlls/rpcrt4/ndr_stubless.c index 2c93ad5d32a..189af5c412e 100644 --- a/dlls/rpcrt4/ndr_stubless.c +++ b/dlls/rpcrt4/ndr_stubless.c @@ -89,11 +89,6 @@ static inline void call_freer(PMIDL_STUB_MESSAGE pStubMsg, unsigned char *pMemor { NDR_FREE m = NdrFreer[pFormat[0] & NDR_TABLE_MASK]; if (m) m(pStubMsg, pMemory, pFormat); - else - { - FIXME("format type 0x%x not implemented\n", pFormat[0]); - RpcRaiseException(RPC_X_BAD_STUB_DATA); - } } static inline unsigned long call_memory_sizer(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat)