Hans Leidekker : rpcrt4: Remove a couple of unused assignments.
Module: wine Branch: master Commit: 0877e4cbb232f5024936ab990c3028ced1aa51ce URL: http://source.winehq.org/git/wine.git/?a=commit;h=0877e4cbb232f5024936ab990c... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu May 21 10:47:32 2015 +0200 rpcrt4: Remove a couple of unused assignments. --- dlls/rpcrt4/rpc_transport.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c index c6bd21e..8c0263b 100644 --- a/dlls/rpcrt4/rpc_transport.c +++ b/dlls/rpcrt4/rpc_transport.c @@ -2972,9 +2972,9 @@ static RPC_STATUS rpcrt4_ncacn_http_open(RpcConnection* Connection) httpc->async_data->completion_event = CreateEventW(NULL, FALSE, FALSE, NULL); - status = UuidCreate(&httpc->connection_uuid); - status = UuidCreate(&httpc->in_pipe_uuid); - status = UuidCreate(&httpc->out_pipe_uuid); + UuidCreate(&httpc->connection_uuid); + UuidCreate(&httpc->in_pipe_uuid); + UuidCreate(&httpc->out_pipe_uuid); status = rpcrt4_http_internet_connect(httpc); if (status != RPC_S_OK)
participants (1)
-
Alexandre Julliard