summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/channels.c b/channels.c
index 14f958fa6..f23066dff 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.399 2020/07/03 05:08:41 djm Exp $ */ 1/* $OpenBSD: channels.c,v 1.400 2020/07/03 07:17:35 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -621,8 +621,6 @@ channel_free(struct ssh *ssh, Channel *c)
621 c->path = NULL; 621 c->path = NULL;
622 free(c->listening_addr); 622 free(c->listening_addr);
623 c->listening_addr = NULL; 623 c->listening_addr = NULL;
624 free(c->mux_ctx);
625 c->mux_ctx = NULL;
626 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) { 624 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
627 if (cc->abandon_cb != NULL) 625 if (cc->abandon_cb != NULL)
628 cc->abandon_cb(ssh, c, cc->ctx); 626 cc->abandon_cb(ssh, c, cc->ctx);