Fix an RPC server startup race introduced by me.

This commit is contained in:
Robert Shearman 2005-06-08 18:32:30 +00:00 committed by Alexandre Julliard
parent e483b0cf9b
commit ff4ba9573c

View file

@ -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;