diff options
author | des <des@FreeBSD.org> | 2013-11-19 11:47:30 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2013-11-19 11:47:30 +0000 |
commit | beb38c6e85b1bb433343cabef403fd1308e5e264 (patch) | |
tree | f6cdb8ddda7dc5f8a1f3c81cbf224d0401f07425 /crypto/openssh/authfd.c | |
parent | 6fcdc56ba5d331958d2397294655e5b48de46175 (diff) | |
download | FreeBSD-src-beb38c6e85b1bb433343cabef403fd1308e5e264.zip FreeBSD-src-beb38c6e85b1bb433343cabef403fd1308e5e264.tar.gz |
MFH (r257954): upgrade to OpenSSH 6.4p1
Approved by: re (kib)
Diffstat (limited to 'crypto/openssh/authfd.c')
-rw-r--r-- | crypto/openssh/authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/authfd.c b/crypto/openssh/authfd.c index 775786b..5cce93b 100644 --- a/crypto/openssh/authfd.c +++ b/crypto/openssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.87 2013/05/17 00:13:13 djm Exp $ */ +/* $OpenBSD: authfd.c,v 1.88 2013/11/08 00:39:14 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -206,7 +206,7 @@ ssh_get_authentication_connection(void) if (sock < 0) return NULL; - auth = xmalloc(sizeof(*auth)); + auth = xcalloc(1, sizeof(*auth)); auth->fd = sock; buffer_init(&auth->identities); auth->howmany = 0; |