? Symbols.map ? _exit.po ? _getlogin.po ? _ptrace.po ? _setlogin.po Index: gen/authenticate.c =================================================================== RCS file: /cvs/src/lib/libc/gen/authenticate.c,v retrieving revision 1.20 diff -u -p -r1.20 authenticate.c --- gen/authenticate.c 24 Nov 2013 23:51:29 -0000 1.20 +++ gen/authenticate.c 27 Aug 2015 04:04:18 -0000 @@ -348,7 +348,7 @@ auth_usercheck(char *name, char *style, auth_setitem(as, AUTHV_SERVICE, "response"); auth_setdata(as, "", 1); auth_setdata(as, password, strlen(password) + 1); - memset(password, 0, strlen(password)); + explicit_bzero(password, strlen(password)); } else as = NULL; as = auth_verify(as, style, name, lc->lc_class, (char *)NULL); @@ -453,7 +453,7 @@ auth_userresponse(auth_session_t *as, ch auth_setdata(as, "", 1); if (response) { auth_setdata(as, response, strlen(response) + 1); - memset(response, 0, strlen(response)); + explicit_bzero(response, strlen(response)); } else auth_setdata(as, "", 1);