From 63f793b96589771bf1cc416f31f59eb7d9b76d65 Mon Sep 17 00:00:00 2001 From: Simon Tatham 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! [originally from svn r2173] --- 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;