From 7e4f9e1af0305d3902d2f8628f7fea2cac9dd622 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 29 Oct 2002 13:05:20 +0000 Subject: [PATCH] Try actually initialising ssh->v1_compressing. With any luck this will be what was causing Owen's crash report today. [originally from svn r2156] --- ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh.c b/ssh.c index 0cfba57e..e60e0315 100644 --- a/ssh.c +++ b/ssh.c @@ -1,4 +1,3 @@ -#include #include #include #include @@ -5889,6 +5888,7 @@ static char *ssh_init(void *frontend_handle, void **backend_handle, ssh->fallback_cmd = 0; ssh->pkt_ctx = 0; ssh->x11auth = NULL; + ssh->v1_compressing = FALSE; ssh->v2_outgoing_sequence = 0; ssh->ssh1_rdpkt_crstate = 0; ssh->ssh2_rdpkt_crstate = 0;