Initialize auth_context to NULL before calling krb5_sendauth - otherwise
authorEzra Peisach <epeisach@mit.edu>
Sat, 15 Jun 1996 08:25:39 +0000 (08:25 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sat, 15 Jun 1996 08:25:39 +0000 (08:25 +0000)
it is treated as pointing to valid memory... (Patch provided by Bill
Sommerfeld)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8367 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/movemail/ChangeLog
src/appl/movemail/movemail.c

index 4ab3f22f19de5317ff0e26ff66febe573105c971..519a4f248a8629970e25b96dee89a94021a0e467 100644 (file)
@@ -1,3 +1,6 @@
+Sat Jun 15 04:23:36 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * movemail.c: Initialize auth_context to NULL.
 
 Fri Jul 7 15:44:13 EDT 1995    Paul Park       (pjpark@mit.edu)
        * Makefile.in - Remove all explicit library handling and LDFLAGS.
index a0bf68217457081d2cb22d57f9d2b4466a6d94f6..d02978e3e346e235ac9ec98e030b9346e18d5c0c 100644 (file)
@@ -535,7 +535,7 @@ char *host;
     krb5_context context;
     krb5_principal client, server;
     krb5_error *err_ret = NULL;
-    krb5_auth_context auth_context;
+    krb5_auth_context auth_context = NULL;
     char *hostname;
 #endif /* KRB5 */
 #endif /* KERBEROS */