Petri Kero pointed out a FreeLibrary() call that should be guarded by NO_IPV6.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Mon, 7 Feb 2005 12:23:10 +0000 (12:23 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Mon, 7 Feb 2005 12:23:10 +0000 (12:23 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@5268 cda61777-01e9-0310-a592-d414129be87e

windows/winnet.c

index f6f7bab..1ddfa5c 100644 (file)
@@ -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)