1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Add some missing initialisations.

Spotted by valgrind, after I was testing all the Coverity bug fixes :-)
This commit is contained in:
Simon Tatham
2014-11-22 14:57:06 +00:00
parent 69d50b2877
commit f454235444
2 changed files with 4 additions and 0 deletions

2
ssh.c
View File

@ -10598,6 +10598,8 @@ static const char *ssh_init(void *frontend_handle, void **backend_handle,
ssh->sent_console_eof = FALSE;
ssh->got_pty = FALSE;
ssh->bare_connection = FALSE;
ssh->X11_fwd_enabled = FALSE;
ssh->connshare = NULL;
ssh->attempting_connshare = FALSE;
*backend_handle = ssh;