diff options
author | Damien Miller <djm@mindrot.org> | 2014-02-04 11:18:20 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-02-04 11:18:20 +1100 |
commit | 1d2c4564265ee827147af246a16f3777741411ed (patch) | |
tree | af83ab151453d013118cd1bd20fb8ba887665fed /hostfile.c | |
parent | 3928de067c286683a95fbdbdb5fdb3c78a0e5efd (diff) |
- tedu@cvs.openbsd.org 2014/01/31 16:39:19
[auth2-chall.c authfd.c authfile.c bufaux.c bufec.c canohost.c]
[channels.c cipher-chachapoly.c clientloop.c configure.ac hostfile.c]
[kexc25519.c krl.c monitor.c sandbox-systrace.c session.c]
[sftp-client.c ssh-keygen.c ssh.c sshconnect2.c sshd.c sshlogin.c]
[openbsd-compat/explicit_bzero.c openbsd-compat/openbsd-compat.h]
replace most bzero with explicit_bzero, except a few that cna be memset
ok djm dtucker
Diffstat (limited to 'hostfile.c')
-rw-r--r-- | hostfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hostfile.c b/hostfile.c index 0198cd001..8bc9540b7 100644 --- a/hostfile.c +++ b/hostfile.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hostfile.c,v 1.54 2014/01/27 18:58:14 markus Exp $ */ | 1 | /* $OpenBSD: hostfile.c,v 1.55 2014/01/31 16:39:19 tedu 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 |
@@ -333,10 +333,10 @@ free_hostkeys(struct hostkeys *hostkeys) | |||
333 | free(hostkeys->entries[i].host); | 333 | free(hostkeys->entries[i].host); |
334 | free(hostkeys->entries[i].file); | 334 | free(hostkeys->entries[i].file); |
335 | key_free(hostkeys->entries[i].key); | 335 | key_free(hostkeys->entries[i].key); |
336 | bzero(hostkeys->entries + i, sizeof(*hostkeys->entries)); | 336 | explicit_bzero(hostkeys->entries + i, sizeof(*hostkeys->entries)); |
337 | } | 337 | } |
338 | free(hostkeys->entries); | 338 | free(hostkeys->entries); |
339 | bzero(hostkeys, sizeof(*hostkeys)); | 339 | explicit_bzero(hostkeys, sizeof(*hostkeys)); |
340 | free(hostkeys); | 340 | free(hostkeys); |
341 | } | 341 | } |
342 | 342 | ||