1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

ssh_free() should not call log_free(); it's for the front end to

decide whether the logctx is finished with or not.

[originally from svn r4452]
This commit is contained in:
Simon Tatham 2004-08-14 12:24:02 +00:00
parent f17522be6c
commit f16d8aff82

4
ssh.c
View File

@ -6473,10 +6473,6 @@ static void ssh_free(void *handle)
crcda_free_context(ssh->crcda_ctx);
ssh->crcda_ctx = NULL;
}
if (ssh->logctx) {
log_free(ssh->logctx);
ssh->logctx = NULL;
}
if (ssh->s)
ssh_do_close(ssh);
sfree(ssh);