Clean up if named pipe is not available.
This commit is contained in:
parent
63b596d7ea
commit
af384ad7a8
|
@ -84,7 +84,8 @@ HANDLE RPCRT4_RpcssNPConnect(void)
|
||||||
if (! WaitNamedPipeA(NAME_RPCSS_NAMED_PIPE, MASTER_MUTEX_WAITNAMEDPIPE_TIMEOUT))
|
if (! WaitNamedPipeA(NAME_RPCSS_NAMED_PIPE, MASTER_MUTEX_WAITNAMEDPIPE_TIMEOUT))
|
||||||
{
|
{
|
||||||
ERR("Named pipe unavailable after waiting. Something is probably wrong.\n");
|
ERR("Named pipe unavailable after waiting. Something is probably wrong.\n");
|
||||||
return NULL;
|
the_pipe = NULL;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue