Make sure WSACleanup() is called when the DLL exits
authorTheodore Tso <tytso@mit.edu>
Thu, 29 Feb 1996 21:50:45 +0000 (21:50 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 29 Feb 1996 21:50:45 +0000 (21:50 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7575 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/ChangeLog
src/lib/win_glue.c

index 026db2664a376e3427b3e3cd51c71fc4f408a009..cc3227655c88a14b12f78e9d06b633b8933bc029 100644 (file)
@@ -1,3 +1,7 @@
+Thu Feb 29 16:49:33 1996  Theodore Y. Ts'o  <tytso@dcl>
+
+       * win_glue.c:  Make sure WSACleanup() is called when the DLL exits.
+
 Tue Feb 27 18:47:17 1996  Theodore Y. Ts'o  <tytso@dcl>
 
        * gssapi.def: We have implemented gss_inquire_names_for_mech, not
index cb67a3626c12f06be9c4f74bfec360a1d753afbc..40dbab9c7e71f77d4479ce9f957930d9f4897e30 100644 (file)
@@ -50,5 +50,6 @@ int CALLBACK __export
 WEP(nParam)
        int nParam;
 {
+    WSACleanup();
     return 1;
 }