[PATCH] webservices: Fix misplaced parenthesis.

Andrey Gusev andrey.goosev at gmail.com
Wed Jan 8 09:34:13 CST 2020


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/webservices/channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/webservices/channel.c b/dlls/webservices/channel.c
index 71207bee6b..10c33dc07d 100644
--- a/dlls/webservices/channel.c
+++ b/dlls/webservices/channel.c
@@ -2355,7 +2355,7 @@ HRESULT WINAPI WsWriteMessageEnd( WS_CHANNEL *handle, WS_MESSAGE *msg, const WS_
         return E_INVALIDARG;
     }
 
-    if ((hr = WsWriteEnvelopeEnd( msg, NULL )) == S_OK && (hr = connect_channel( channel ) == S_OK))
+    if ((hr = WsWriteEnvelopeEnd( msg, NULL )) == S_OK && (hr = connect_channel( channel )) == S_OK)
         hr = send_message( channel, msg );
 
     LeaveCriticalSection( &channel->cs );
-- 
2.24.1




More information about the wine-devel mailing list