mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
Petri Kero pointed out a FreeLibrary() call that should be guarded by NO_IPV6.
[originally from svn r5268]
This commit is contained in:
parent
3fa46caeb8
commit
0259612237
@ -251,8 +251,10 @@ void sk_cleanup(void)
|
||||
p_WSACleanup();
|
||||
if (winsock_module)
|
||||
FreeLibrary(winsock_module);
|
||||
#ifndef NO_IPV6
|
||||
if (wship6_module)
|
||||
FreeLibrary(wship6_module);
|
||||
#endif
|
||||
}
|
||||
|
||||
char *winsock_error_string(int error)
|
||||
|
Loading…
Reference in New Issue
Block a user