diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-29 22:19:14 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-29 22:19:14 +0000 |
commit | 80bd6a9e7268ea2eb37a9e52836bbee1ed9e0c44 (patch) | |
tree | 7e001e046c74613da915397c17811c1ae20fe25c /usr.bin | |
parent | ccb0df76b506ba2bf674cc785963185e11bc16bc (diff) |
missing xfree; from vaughan99@yahoo.com
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/channels.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 3e894566459..db477ad655e 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.78 2000/12/29 11:05:55 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.79 2000/12/29 22:19:13 markus Exp $"); #include "ssh.h" #include "packet.h" @@ -307,9 +307,13 @@ void channel_free(int id) { Channel *c = channel_lookup(id); + char *s = channel_open_message(); + if (c == NULL) packet_disconnect("channel free: bad local channel %d", id); - debug("channel_free: channel %d: status: %s", id, channel_open_message()); + debug("channel_free: channel %d: status: %s", id, s); + xfree(s); + if (c->dettach_user != NULL) { debug("channel_free: channel %d: dettaching channel user", id); c->dettach_user(c->self, NULL); |