mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 08:12:05 +00:00
- dugsong@cvs.openbsd.org 2002/03/18 01:30:10
[auth-krb4.c] set client to NULL after xfree(), from Rolf Braun <rbraun+ssh@andrew.cmu.edu>
This commit is contained in:
parent
73ab9ba45d
commit
abf3144064
@ -37,6 +37,10 @@
|
||||
[auth.h auth1.c auth2.c sshd.c]
|
||||
have the authentication functions return the authentication context
|
||||
and then do_authenticated; okay millert@
|
||||
- dugsong@cvs.openbsd.org 2002/03/18 01:30:10
|
||||
[auth-krb4.c]
|
||||
set client to NULL after xfree(), from Rolf Braun
|
||||
<rbraun+ssh@andrew.cmu.edu>
|
||||
|
||||
20020317
|
||||
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
|
||||
@ -7883,4 +7887,4 @@
|
||||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1935 2002/03/22 01:27:35 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1936 2002/03/22 01:30:40 mouring Exp $
|
||||
|
@ -23,7 +23,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: auth-krb4.c,v 1.25 2001/12/19 07:18:56 deraadt Exp $");
|
||||
RCSID("$OpenBSD: auth-krb4.c,v 1.26 2002/03/18 01:30:10 dugsong Exp $");
|
||||
|
||||
#include "ssh.h"
|
||||
#include "ssh1.h"
|
||||
@ -253,6 +253,7 @@ auth_krb4(Authctxt *authctxt, KTEXT auth, char **client)
|
||||
log("Kerberos v4 .klogin authorization failed for %s to "
|
||||
"account %s", *client, authctxt->user);
|
||||
xfree(*client);
|
||||
*client = NULL;
|
||||
return (0);
|
||||
}
|
||||
/* Increment the checksum, and return it encrypted with the
|
||||
|
Loading…
Reference in New Issue
Block a user