Commit 0b1e51ca authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Now that there's a process-wide pool of connections we don't

need to copy the FromConn field when copying bindings.
parent 56386bd8
......@@ -865,8 +865,6 @@ RPC_STATUS RPC_ENTRY RpcBindingCopy(
DestBinding->NetworkAddr = RPCRT4_strndupA(SrcBinding->NetworkAddr, -1);
DestBinding->Endpoint = RPCRT4_strndupA(SrcBinding->Endpoint, -1);
DestBinding->FromConn = SrcBinding->FromConn;
SrcBinding->FromConn = NULL;
if (SrcBinding->AuthInfo) RpcAuthInfo_AddRef(SrcBinding->AuthInfo);
DestBinding->AuthInfo = SrcBinding->AuthInfo;
......
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