diff options
author | Damien Miller <djm@mindrot.org> | 2013-11-08 12:28:03 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-11-08 12:28:03 +1100 |
commit | 727a3bfd3b5943bef9a9fd02812e9a75758d6d26 (patch) | |
tree | c9465c196ba7c575797626192d06e35a787a5c7d /authfd.c | |
parent | 13cfd6d68237ef844dd8e02cf9ed21268154a999 (diff) |
- djm@cvs.openbsd.org 2013/11/08 00:39:15
[auth-options.c auth2-chall.c authfd.c channels.c cipher-3des1.c]
[clientloop.c gss-genr.c monitor_mm.c packet.c schnorr.c umac.c]
[sftp-client.c sftp-glob.c]
use calloc for all structure allocations; from markus@
Diffstat (limited to 'authfd.c')
-rw-r--r-- | authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: authfd.c,v 1.87 2013/05/17 00:13:13 djm Exp $ */ | 1 | /* $OpenBSD: authfd.c,v 1.88 2013/11/08 00:39:14 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 |
@@ -206,7 +206,7 @@ ssh_get_authentication_connection(void) | |||
206 | if (sock < 0) | 206 | if (sock < 0) |
207 | return NULL; | 207 | return NULL; |
208 | 208 | ||
209 | auth = xmalloc(sizeof(*auth)); | 209 | auth = xcalloc(1, sizeof(*auth)); |
210 | auth->fd = sock; | 210 | auth->fd = sock; |
211 | buffer_init(&auth->identities); | 211 | buffer_init(&auth->identities); |
212 | auth->howmany = 0; | 212 | auth->howmany = 0; |