From c69784c016672f18d546875689652c4b54431bad Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 7 Dec 2011 19:07:02 +0000 Subject: [PATCH] Add a missing free_prompts() call in the keyboard-interactive code. git-svn-id: svn://svn.tartarus.org/sgt/putty@9357 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ssh.c b/ssh.c index aabbcc4a..3464ea54 100644 --- a/ssh.c +++ b/ssh.c @@ -8524,6 +8524,13 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, } ssh2_pkt_send_with_padding(ssh, s->pktout, 256); + /* + * Free the prompts structure from this iteration. + * If there's another, a new one will be allocated + * when we return to the top of this while loop. + */ + free_prompts(s->cur_prompt); + /* * Get the next packet in case it's another * INFO_REQUEST. -- 2.11.0