if (h == nullptr)
return RPC_PORT_ERROR_INVALID_PARAMETER;
- _W("rpc_port_proxy_create(%p)", h);
auto p = new ::ProxyExt();
*h = p;
+ _W("rpc_port_proxy_create(%p)", p);
return RPC_PORT_ERROR_NONE;
}
if (h == nullptr || port_name == nullptr)
return RPC_PORT_ERROR_INVALID_PARAMETER;
- _W("rpc_port_stub_create(%p, %s)", h, port_name);
auto p = new ::StubExt(port_name);
*h = p;
+ _W("rpc_port_stub_create(%p, %s)", p, port_name);
return RPC_PORT_ERROR_NONE;
}