summaryrefslogtreecommitdiffhomepage
path: root/cli-authpubkey.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2007-02-04 10:32:59 +0000
committerMatt Johnston <matt@ucc.asn.au>2007-02-04 10:32:59 +0000
commitfd304d763ace5074dc8e26b29fecc88d0d7ea006 (patch)
treef54c32bfbe83b44f715ab47a5863f84f585cfbe5 /cli-authpubkey.c
parentd9aeb2773e236e662c8b493f4bcee978f9908d7c (diff)
parent60d4cd599621a843095a0948c58c40b0ba286de2 (diff)
merge of 'b1dd3b94e60a07a176dba2b035ac79968595990a'
and 'bcb33fce2fad01a7626598209d43af3571bd86f0' --HG-- extra : convert_revision : 691c56da3db2685f58ea53540a73c1b79e7df9cd
Diffstat (limited to 'cli-authpubkey.c')
-rw-r--r--cli-authpubkey.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cli-authpubkey.c b/cli-authpubkey.c
index 8a8fb42..4798f62 100644
--- a/cli-authpubkey.c
+++ b/cli-authpubkey.c
@@ -60,8 +60,8 @@ void cli_pubkeyfail() {
void recv_msg_userauth_pk_ok() {
- struct SignKeyList *keyitem;
- buffer* keybuf;
+ struct SignKeyList *keyitem = NULL;
+ buffer* keybuf = NULL;
char* algotype = NULL;
unsigned int algolen;
int keytype;
@@ -122,6 +122,8 @@ void recv_msg_userauth_pk_ok() {
} else {
TRACE(("That was whacky. We got told that a key was valid, but it didn't match our list. Sounds like dodgy code on Dropbear's part"))
}
+
+ buf_free(keybuf);
TRACE(("leave recv_msg_userauth_pk_ok"))
}