mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* elf/dl-deps.c (_dl_map_object_deps): The sorting of the dependencies must be stable to work correctly. Reported by martin.lubich@datacon.at.
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2002-04-02 Ulrich Drepper <drepper@redhat.com>
|
2002-04-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-deps.c (_dl_map_object_deps): The sorting of the
|
||||||
|
dependencies must be stable to work correctly.
|
||||||
|
Reported by martin.lubich@datacon.at.
|
||||||
|
|
||||||
* libio/bug-ungetwc1.c: New file.
|
* libio/bug-ungetwc1.c: New file.
|
||||||
* libio/Makefile (tests): Add bug-ungetwc1.
|
* libio/Makefile (tests): Add bug-ungetwc1.
|
||||||
|
|
||||||
|
@ -614,6 +614,10 @@ Filters not supported with LD_TRACE_PRELINKING"));
|
|||||||
(k - j) * sizeof (struct link_map *));
|
(k - j) * sizeof (struct link_map *));
|
||||||
map->l_initfini[j] = here;
|
map->l_initfini[j] = here;
|
||||||
|
|
||||||
|
/* Don't insert further matches before the last
|
||||||
|
entry moved to the front. */
|
||||||
|
++j;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user