summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-11-19 08:23:27 +0000
committerDamien Miller <djm@mindrot.org>2015-11-19 19:25:04 +1100
commit88b6fcdeb87a2fb76767854d9eb15006662dca57 (patch)
treef035cd36f9a99f80bb3bdf24ee48df465bbe5412 /sshconnect.c
parent964ab3ee7a8f96bdbc963d5b5a91933d6045ebe7 (diff)
upstream commit
ban ConnectionAttempts=0, it makes no sense and would cause ssh_connect_direct() to print an uninitialised stack variable; bz#2500 reported by dvw AT phas.ubc.ca Upstream-ID: 32b5134c608270583a90b93a07b3feb3cbd5f7d5
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 1507934d8..b2c878a50 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.267 2015/11/19 01:09:38 djm Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.268 2015/11/19 08:23:27 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
@@ -434,6 +434,8 @@ ssh_connect_direct(const char *host, struct addrinfo *aitop,
434 struct addrinfo *ai; 434 struct addrinfo *ai;
435 435
436 debug2("%s: needpriv %d", __func__, needpriv); 436 debug2("%s: needpriv %d", __func__, needpriv);
437 memset(ntop, 0, sizeof(ntop));
438 memset(strport, 0, sizeof(strport));
437 439
438 for (attempt = 0; attempt < connection_attempts; attempt++) { 440 for (attempt = 0; attempt < connection_attempts; attempt++) {
439 if (attempt > 0) { 441 if (attempt > 0) {