Module: wine Branch: refs/heads/master Commit: e3df112a39467d9ac6f71af82db45e84b33c9e63 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e3df112a39467d9ac6f71af8...
Author: Robert Shearman rob@codeweavers.com Date: Fri Jun 9 17:25:07 2006 +0100
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 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/dlls/rpcrt4/ndr_stubless.c b/dlls/rpcrt4/ndr_stubless.c index 2c93ad5..189af5c 100644 --- a/dlls/rpcrt4/ndr_stubless.c +++ b/dlls/rpcrt4/ndr_stubless.c @@ -89,11 +89,6 @@ static inline void call_freer(PMIDL_STUB { 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)