Fix an RPC server startup race introduced by me.
This commit is contained in:
parent
e483b0cf9b
commit
ff4ba9573c
|
@ -846,8 +846,11 @@ RPC_STATUS WINAPI RpcServerRegisterIf2( RPC_IF_HANDLE IfSpec, UUID* MgrTypeUuid,
|
|||
LeaveCriticalSection(&server_cs);
|
||||
|
||||
if (sif->Flags & RPC_IF_AUTOLISTEN) {
|
||||
/* well, start listening, I think... */
|
||||
RPCRT4_start_listen(TRUE);
|
||||
|
||||
/* make sure server is actually listening on the interface before
|
||||
* returning */
|
||||
RPCRT4_sync_with_server_thread();
|
||||
}
|
||||
|
||||
return RPC_S_OK;
|
||||
|
|
Loading…
Reference in New Issue