about summary refs log tree commit diff
path: root/elf/tst-dlmopen-twice-mod1.c
Commit message (Collapse)AuthorAgeFilesLines
* elf: Call __libc_early_init for reused namespaces (bug 29528)Florian Weimer2022-08-301-0/+37
libc_map is never reset to NULL, neither during dlclose nor on a dlopen call which reuses the namespace structure. As a result, if a namespace is reused, its libc is not initialized properly. The most visible result is a crash in the <ctype.h> functions. To prevent similar bugs on namespace reuse from surfacing, unconditionally initialize the chosen namespace to zero using memset. (cherry picked from commit d0e357ff45a75553dee3b17ed7d303bfa544f6fe)