diff options
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r-- | usr.bin/ssh/sshd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 3abee5e8cef..beaecc975b6 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.105 2000/04/14 10:30:33 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.106 2000/04/17 12:31:47 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -1255,6 +1255,7 @@ do_ssh2_kex() packet_put_bignum2(dh->pub_key); // f packet_put_string((char *)signature, slen); packet_send(); + xfree(signature); packet_write_wait(); kex_derive_keys(kex, hash, shared_secret); |