[PATCH] webservices/tests: Add a missing closesocket call (Coverity).

Sven Baars sven.wine at gmail.com
Sat Feb 9 09:55:49 CST 2019


Signed-off-by: Sven Baars <sven.wine at gmail.com>
---
 dlls/webservices/tests/proxy.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/webservices/tests/proxy.c b/dlls/webservices/tests/proxy.c
index f5297796b3..3fe92367e9 100644
--- a/dlls/webservices/tests/proxy.c
+++ b/dlls/webservices/tests/proxy.c
@@ -708,6 +708,7 @@ static DWORD CALLBACK server_proc( void *arg )
         closesocket( c );
         if (quit) break;
     }
+    closesocket( s );
 
     return 0;
 }
-- 
2.17.1




More information about the wine-devel mailing list