CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/02/26 06:40:09
Modified files:
usr.bin/ssh : auth-options.c auth2-chall.c auth2-passwd.c
authfd.c channels.c cipher.c clientloop.c
digest-libc.c hmac.c hostfile.c kex.c monitor.c
ssh-add.c ssh-agent.c ssh-dss.c
ssh-ed25519-sk.c ssh-ed25519.c ssh-keygen.c
ssh-xmss.c sshbuf-misc.c sshbuf.c sshkey.c
umac.c
Log message:
change explicit_bzero();free() to freezero()
While freezero() returns early if the pointer is NULL the tests for
NULL in callers are left to avoid warnings about passing an
uninitialised size argument across a function boundry.
ok deraadt@ djm@