diff options
author | Damien Miller <djm@mindrot.org> | 2013-11-08 02:19:55 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-11-08 02:19:55 +0100 |
commit | 6c81fee693038de7d4a5559043350391db2a2761 (patch) | |
tree | e09e17a18e8556e3b2276b280fa2cd2f2c465f90 /authfd.c | |
parent | - dtucker@cvs.openbsd.org 2013/11/07 11:58:27 (diff) | |
download | openssh-6c81fee693038de7d4a5559043350391db2a2761.tar.xz openssh-6c81fee693038de7d4a5559043350391db2a2761.zip |
- 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 @@ -/* $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; |