Rob Shearman : rpcrt4: Print a warning if connecting to a named pipe failed in rpcrt4_conn_open_pipe in the !wait case .

Alexandre Julliard julliard at winehq.org
Mon Aug 18 10:46:25 CDT 2008


Module: wine
Branch: master
Commit: 0a5e5a6e5bff3964dba7b718bb3302cbacf08158
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0a5e5a6e5bff3964dba7b718bb3302cbacf08158

Author: Rob Shearman <robertshearman at gmail.com>
Date:   Thu Aug 14 09:15:09 2008 +0100

rpcrt4: Print a warning if connecting to a named pipe failed in rpcrt4_conn_open_pipe in the !wait case.

---

 dlls/rpcrt4/rpc_transport.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c
index 75423b9..adba3c8 100644
--- a/dlls/rpcrt4/rpc_transport.c
+++ b/dlls/rpcrt4/rpc_transport.c
@@ -210,9 +210,7 @@ static RPC_STATUS rpcrt4_conn_open_pipe(RpcConnection *Connection, LPCSTR pname,
       TRACE("connection failed, error=%x\n", err);
       return RPC_S_SERVER_TOO_BUSY;
     }
-    if (!wait)
-      return RPC_S_SERVER_UNAVAILABLE;
-    if (!WaitNamedPipeA(pname, NMPWAIT_WAIT_FOREVER)) {
+    if (!wait || !WaitNamedPipeA(pname, NMPWAIT_WAIT_FOREVER)) {
       err = GetLastError();
       WARN("connection failed, error=%x\n", err);
       return RPC_S_SERVER_UNAVAILABLE;




More information about the wine-cvs mailing list