summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2018-02-07 22:52:45 +0000
committerDamien Miller <djm@mindrot.org>2018-02-09 20:00:18 +1100
commitf1f047fb031c0081dbc8738f05bf5d4cc47acadf (patch)
tree1be06338e02d74a923527cdc03b88b472294a420 /sshconnect.c
parentaee49b2a89b6b323c80dd3b431bd486e51f94c8c (diff)
upstream commit
ssh_free checks for and handles NULL args, remove NULL checks from remaining callers. ok djm@ OpenBSD-Commit-ID: bb926825c53724c069df68a93a2597f9192f7e7b
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sshconnect.c b/sshconnect.c
index cddf22e1c..e37bb0856 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.292 2018/01/23 18:33:49 stsp Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.293 2018/02/07 22:52:45 dtucker 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
@@ -1177,8 +1177,7 @@ fail:
1177 host_key = raw_key; 1177 host_key = raw_key;
1178 goto retry; 1178 goto retry;
1179 } 1179 }
1180 if (raw_key != NULL) 1180 sshkey_free(raw_key);
1181 sshkey_free(raw_key);
1182 free(ip); 1181 free(ip);
1183 free(host); 1182 free(host);
1184 if (host_hostkeys != NULL) 1183 if (host_hostkeys != NULL)