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
Родитель f17522be6c
Коммит f16d8aff82
1 изменённых файлов: 0 добавлений и 4 удалений

4
ssh.c
Просмотреть файл

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