From: Ulrich Drepper Date: Mon, 14 Sep 1998 22:04:05 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_96~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3f8acb39b5b7f7390ac7e6c5d09648837683d5f;p=thirdparty%2Fglibc.git Update. 1998-09-14 Ulrich Drepper * nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size. --- diff --git a/ChangeLog b/ChangeLog index e8ba7be89a7..e589cd57d6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1998-09-14 Ulrich Drepper + + * nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size. + 1998-09-14 15:29 Ulrich Drepper * stdio-common/Makefile (headers): Remove bits/stdio_lim.h. diff --git a/nscd/TODO b/nscd/TODO index 16c28354688..a0b8427ad3f 100644 --- a/nscd/TODO +++ b/nscd/TODO @@ -1,6 +1,4 @@ -* We should use readv/writev for group entries, too - * If we have reached the max. # of process, close accept socket. ! THIS COULD CAUSE THE KERNEL TO HANG ! BE CAREFUL ! diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index e2bf73afc13..9b7c0a040a8 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -110,7 +110,7 @@ cache_pwdinit () pwdtbl = calloc (modulo, sizeof (pwdhash)); if (pwdtbl == NULL) return -1; - uidtbl = calloc (modulo, sizeof (pwdhash)); + uidtbl = calloc (modulo, sizeof (uidhash)); if (uidtbl == NULL) return -1; negtbl = calloc (modulo, sizeof (neghash));