Module: wine Branch: master Commit: b300189c434ada46dae90f09520b77d262be3480 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b300189c434ada46dae90f0952...
Author: Rob Shearman rob@codeweavers.com Date: Sat Dec 15 13:57:06 2007 +0000
rpcrt4: Add a FIXME for RPC_FC_P_ALLOCALLNODES in PointerUnmarshall.
---
dlls/rpcrt4/ndr_marshall.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 7b50b47..bd184e2 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -1096,6 +1096,9 @@ static void PointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, } }
+ if (attr & RPC_FC_P_ALLOCALLNODES) + FIXME("RPC_FC_P_ALLOCALLNODES not implemented\n"); + if (attr & RPC_FC_P_DEREF) { if (fMustAlloc) { base_ptr_val = NdrAllocate(pStubMsg, sizeof(void *));