Commit 855535af authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Handle interface pointers in EmbeddedComplexSize.

parent 40d80d7c
......@@ -1543,6 +1543,8 @@ static unsigned long EmbeddedComplexSize(PMIDL_STUB_MESSAGE pStubMsg,
pFormat += *(const SHORT*)pFormat;
return *(const SHORT*)pFormat;
case RPC_FC_IP:
return sizeof(void *);
default:
FIXME("unhandled embedded type %02x\n", *pFormat);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment