1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-07-28 01:41:49 +03:00

example, tests: call WSACleanup() for each WSAStartup()

On Windows.

Closes #1283
This commit is contained in:
Viktor Szakats
2023-12-13 00:14:45 +00:00
parent 52c382f7aa
commit 94b6bad3c8
25 changed files with 100 additions and 0 deletions

View File

@ -295,5 +295,9 @@ shutdown:
libssh2_exit();
#ifdef _WIN32
WSACleanup();
#endif
return 0;
}