diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-04-14 23:50:41 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-04-14 23:52:57 +0200 |
commit | 390c7000a8946db565b66eab9e52fb11948711fa (patch) | |
tree | 0a8773f3efde5d2b445a86ad0bddb0d853ef0ca6 /ssh.c | |
parent | upstream: notify user immediately when underlying ssh process dies; (diff) | |
download | openssh-390c7000a8946db565b66eab9e52fb11948711fa.tar.xz openssh-390c7000a8946db565b66eab9e52fb11948711fa.zip |
upstream: don't free the %C expansion, it's used later for
LocalCommand
OpenBSD-Commit-ID: 857b5cb37b2d856bfdfce61289a415257a487fb1
Diffstat (limited to '')
-rw-r--r-- | ssh.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.476 2018/04/10 00:10:49 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.477 2018/04/14 21:50:41 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1323,7 +1323,6 @@ main(int ac, char **av) (char *)NULL); free(cp); } - free(conn_hash_hex); if (config_test) { dump_client_config(&options, host); |