1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

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]
This commit is contained in:
Simon Tatham 2002-11-01 12:59:09 +00:00
parent 48147ab3a8
commit 63f793b965

2
ssh.c
View File

@ -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;