rpcrt4: Cache the connection so we don't rebind on every call.

This commit is contained in:
Mike McCormack 2006-05-10 18:07:46 +09:00 committed by Alexandre Julliard
parent 5a8536a18d
commit 9088debbfb
1 changed files with 1 additions and 0 deletions

View File

@ -323,6 +323,7 @@ RPC_STATUS RPCRT4_OpenBinding(RpcBinding* Binding, RpcConnection** Connection,
(*Connection)->ActiveInterface = *InterfaceId;
HeapFree(GetProcessHeap(), 0, response);
}
Binding->FromConn = *Connection;
return RPC_S_OK;
}