Module: wine Branch: master Commit: ab6361fbbfd18747d89d8658a6ce05ade731453e URL: http://source.winehq.org/git/wine.git/?a=commit;h=ab6361fbbfd18747d89d8658a6...
Author: Hans Leidekker hans@codeweavers.com Date: Thu May 21 10:47:08 2015 +0200
rpcrt4: Initialize the association UUID in RpcAssoc_Alloc.
---
dlls/rpcrt4/rpc_assoc.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/rpcrt4/rpc_assoc.c b/dlls/rpcrt4/rpc_assoc.c index 170ca44..339ac12 100644 --- a/dlls/rpcrt4/rpc_assoc.c +++ b/dlls/rpcrt4/rpc_assoc.c @@ -80,6 +80,7 @@ static RPC_STATUS RpcAssoc_Alloc(LPCSTR Protseq, LPCSTR NetworkAddr, assoc->Endpoint = RPCRT4_strdupA(Endpoint); assoc->NetworkOptions = NetworkOptions ? RPCRT4_strdupW(NetworkOptions) : NULL; assoc->assoc_group_id = 0; + UuidCreate(&assoc->http_uuid); list_init(&assoc->entry); *assoc_out = assoc; return RPC_S_OK;