diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-11-25 21:29:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-11-25 21:29:30 +0000 |
commit | e8667ddc01786cfe79861a0031d6244212fd7a65 (patch) | |
tree | 4fdb82b812bf2e98829db72a095f90efb7e60ab1 /nscd/initgrcache.c | |
parent | 30294ea4495e48e0103fee4d855737a281cc49fa (diff) | |
download | glibc-e8667ddc01786cfe79861a0031d6244212fd7a65.tar glibc-e8667ddc01786cfe79861a0031d6244212fd7a65.tar.gz glibc-e8667ddc01786cfe79861a0031d6244212fd7a65.tar.bz2 glibc-e8667ddc01786cfe79861a0031d6244212fd7a65.zip |
Clear array before use.
* nscd/hstcache.c (cache_addhst): Likewise.
* nscd/grpcache.c (cache_addgr): Likewise.
* nscd/servicescache.c (cache_addserv): Likewise.
* nscd/pwdcache.c (cache_addpw): Likewise.
* nscd/initgrcache.c (addinitgroupsX): Likewise.
Diffstat (limited to 'nscd/initgrcache.c')
-rw-r--r-- | nscd/initgrcache.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nscd/initgrcache.c b/nscd/initgrcache.c index bb4ac37efc..157cd7860c 100644 --- a/nscd/initgrcache.c +++ b/nscd/initgrcache.c @@ -110,7 +110,7 @@ addinitgroupsX (struct database_dyn *db, int fd, request_header *req, bool all_tryagain = true; bool any_success = false; - /* This is temporary memory, we need not (ad must not) call + /* This is temporary memory, we need not (and must not) call mempool_alloc. */ // XXX This really should use alloca. need to change the backends. gid_t *groups = (gid_t *) malloc (size * sizeof (gid_t)); @@ -338,6 +338,8 @@ addinitgroupsX (struct database_dyn *db, int fd, request_header *req, dataset = memcpy (newp, dataset, total + req->key_len); alloca_used = false; } + else + ++db->head->addfailed; /* Mark the old record as obsolete. */ dh->usable = false; |