From 4c36ef1d4e2949264b212f3c54ad484d41063b2c Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Wed, 4 Mar 2015 10:11:41 +0100 Subject: [PATCH] ws2_32/tests: Remove an unused assignment (PVS-Studio). --- dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 19663c25e02..656951541a4 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -3702,7 +3702,7 @@ static void test_accept(void) closesocket(accepted); closesocket(connector); - accepted = connector = server_socket = INVALID_SOCKET; + accepted = connector = INVALID_SOCKET; socklen = sizeof(address); server_socket = setup_server_socket(&address, &socklen);