artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27feb25
)
missing xfree()
author
markus
<markus@openbsd.org>
Mon, 17 Apr 2000 12:31:47 +0000
(12:31 +0000)
committer
markus
<markus@openbsd.org>
Mon, 17 Apr 2000 12:31:47 +0000
(12:31 +0000)
usr.bin/ssh/sshd.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/sshd.c
b/usr.bin/ssh/sshd.c
index
3abee5e
..
beaecc9
100644
(file)
--- 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.10
5 2000/04/14 10:30:33
markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.10
6 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);