From: simon Date: Fri, 1 Nov 2002 12:59:09 +0000 (+0000) Subject: valgrind has caught two more uninitialised elements in the SSH X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/968d2d92c0610def3d66009f8a59120a40892655?hp=fbbb86aa8cbe57229e076539fa5c145ff12ed1b0 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 --- 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;