ws2_32/tests: Add missing closesocket calls (Coverity).

This commit is contained in:
Bruno Jesus 2014-01-18 19:07:52 -02:00 committed by Alexandre Julliard
parent 4c6e04050f
commit 84d91bb93d
1 changed files with 3 additions and 0 deletions

View File

@ -1061,6 +1061,9 @@ static void test_WithWSAStartup(void)
ok(error == WSAENOTSOCK, "expected 10038, got %d\n", error); ok(error == WSAENOTSOCK, "expected 10038, got %d\n", error);
} }
closesocket(src);
closesocket(dst);
WSACleanup(); WSACleanup();
} }