diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-07 19:06:26 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-07 19:06:26 +0000 |
commit | 0ee38e130daa4161db4b609f1fcb9c463ea86033 (patch) | |
tree | e16b19e118dfeadee69d606dd703e288dbaf8a44 /usr.bin | |
parent | 618767322006a704423495f02d6c0c9473b0838e (diff) |
missing free, stevesk@pobox.com
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/auth1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index a8521baa44d..a0b072b73a1 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.9 2000/12/27 12:34:49 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.10 2001/01/07 19:06:25 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -414,6 +414,7 @@ do_authentication() packet_start(SSH_SMSG_SUCCESS); packet_send(); packet_write_wait(); + xfree(user); /* Perform session preparation. */ do_authenticated(pw); |