mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
Update.
* elf/dl-close.c (_dl_close): Type typo, must be == not = in search for removed searchlist. Reported by Roland McGrath.
This commit is contained in:
parent
40212ce0c9
commit
1376cd8c7b
@ -1,5 +1,8 @@
|
||||
2003-01-12 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/dl-close.c (_dl_close): Type typo, must be == not = in
|
||||
search for removed searchlist. Reported by Roland McGrath.
|
||||
|
||||
* io/ftwtest-sh: Add test for case of symlink to nonexisting file
|
||||
given as start file.
|
||||
|
||||
|
@ -303,7 +303,7 @@ _dl_close (void *_map)
|
||||
imap->l_searchlist.r_nlist = cnt;
|
||||
|
||||
for (cnt = 0; imap->l_scope[cnt] != NULL; ++cnt)
|
||||
if (imap->l_scope[cnt] = &map->l_searchlist)
|
||||
if (imap->l_scope[cnt] == &map->l_searchlist)
|
||||
{
|
||||
imap->l_scope[cnt] = &imap->l_searchlist;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user