summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-05-20 15:20:08 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-05-20 15:20:08 +1000
commit29171e9f5c094d912bd27c60b2973617e05cc785 (patch)
treee22d06c2e77bc494af8614871c6f87cd9a3ed50e
parentf520ea156782619321d4d5ac2389130615b7eea3 (diff)
- (dtucker) [auth-pam.c] malloc+memset -> calloc. Patch from
ldv at altlinux.org.
-rw-r--r--ChangeLog4
-rw-r--r--auth-pam.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a28fa8b5..eb9a6ebe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,8 @@
- jolan@cvs.openbsd.org 2007/05/17 23:53:41
[sshconnect2.c]
djm owes me a vb and a tism cd for breaking ssh compilation
+ - (dtucker) [auth-pam.c] malloc+memset -> calloc. Patch from
+ ldv at altlinux.org.
20070509
- (tim) [configure.ac] Bug #1287: Add missing test for ucred.h.
@@ -2936,4 +2938,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4668 2007/05/20 05:11:33 dtucker Exp $
+$Id: ChangeLog,v 1.4669 2007/05/20 05:20:08 dtucker Exp $
diff --git a/auth-pam.c b/auth-pam.c
index c08d4722..bfd8f327 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -686,8 +686,7 @@ sshpam_init_ctx(Authctxt *authctxt)
return (NULL);
}
- ctxt = xmalloc(sizeof *ctxt);
- memset(ctxt, 0, sizeof(*ctxt));
+ ctxt = xcalloc(1, sizeof *ctxt);
/* Start the authentication thread */
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
@@ -1130,9 +1129,8 @@ sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg,
if (n <= 0 || n > PAM_MAX_NUM_MSG)
return (PAM_CONV_ERR);
- if ((reply = malloc(n * sizeof(*reply))) == NULL)
+ if ((reply = calloc(n, sizeof(*reply))) == NULL)
return (PAM_CONV_ERR);
- memset(reply, 0, n * sizeof(*reply));
for (i = 0; i < n; ++i) {
switch (PAM_MSG_MEMBER(msg, i, msg_style)) {