From 635d063da010c2a98ba36c017d47baff92139eac Mon Sep 17 00:00:00 2001 From: jacob Date: Mon, 7 Feb 2005 12:23:10 +0000 Subject: [PATCH] Petri Kero pointed out a FreeLibrary() call that should be guarded by NO_IPV6. git-svn-id: svn://svn.tartarus.org/sgt/putty@5268 cda61777-01e9-0310-a592-d414129be87e --- windows/winnet.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/winnet.c b/windows/winnet.c index f6f7bab0..1ddfa5c7 100644 --- a/windows/winnet.c +++ b/windows/winnet.c @@ -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) -- 2.11.0