mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
* nscd/connections.c (verify_persistent_db): Recognize circular lists.
This commit is contained in:
parent
8c7661bcd3
commit
506073094c
@ -1,6 +1,7 @@
|
|||||||
2007-10-06 Ulrich Drepper <drepper@redhat.com>
|
2007-10-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
|
* nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
|
||||||
|
* nscd/connections.c (verify_persistent_db): Recognize circular lists.
|
||||||
|
|
||||||
[BZ #4407]
|
[BZ #4407]
|
||||||
* sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
|
* sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
|
||||||
|
@ -378,7 +378,8 @@ verify_persistent_db (void *mem, struct database_pers_head *readhead, int dbnr)
|
|||||||
nscd_ssize_t he_cnt = 0;
|
nscd_ssize_t he_cnt = 0;
|
||||||
for (nscd_ssize_t cnt = 0; cnt < head->module; ++cnt)
|
for (nscd_ssize_t cnt = 0; cnt < head->module; ++cnt)
|
||||||
{
|
{
|
||||||
ref_t work = head->array[cnt];
|
ref_t first = head->array[cnt];
|
||||||
|
ref_t work = first;
|
||||||
|
|
||||||
while (work != ENDREF)
|
while (work != ENDREF)
|
||||||
{
|
{
|
||||||
@ -437,6 +438,10 @@ verify_persistent_db (void *mem, struct database_pers_head *readhead, int dbnr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
work = here->next;
|
work = here->next;
|
||||||
|
|
||||||
|
if (work == first)
|
||||||
|
/* A circular list, this must not happen. */
|
||||||
|
goto fail;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user