mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Update.
1998-09-14 Ulrich Drepper <drepper@cygnus.com> * nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size.
This commit is contained in:
parent
0a1590ba53
commit
d3f8acb39b
@ -1,3 +1,7 @@
|
||||
1998-09-14 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size.
|
||||
|
||||
1998-09-14 15:29 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* stdio-common/Makefile (headers): Remove bits/stdio_lim.h.
|
||||
|
@ -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 !
|
||||
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user