Commit e9e0507d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

rpcrt4: An interface pointer just has the size of a regular pointer.

parent 8f9c39d2
......@@ -211,6 +211,8 @@ static DWORD calc_arg_size(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
break;
default:
FIXME("Unhandled type %02x\n", *pFormat);
/* fallthrough */
case RPC_FC_IP:
size = sizeof(void *);
break;
}
......
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