From 968d2d92c0610def3d66009f8a59120a40892655 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 1 Nov 2002 12:59:09 +0000 Subject: [PATCH] valgrind has caught two more uninitialised elements in the SSH context structure. I knew the Unix port would be a good idea! git-svn-id: svn://svn.tartarus.org/sgt/putty@2173 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssh.c b/ssh.c index 83f23f03..eae4cd53 100644 --- a/ssh.c +++ b/ssh.c @@ -5892,6 +5892,8 @@ static char *ssh_init(void *frontend_handle, void **backend_handle, ssh->do_ssh2_transport_state = NULL; ssh->do_ssh2_authconn_state = NULL; ssh->mainchan = NULL; + ssh->throttled_all = 0; + ssh->v1_stdout_throttling = 0; *backend_handle = ssh; -- 2.11.0