From: Aurelien Jarno Date: Sun, 10 Dec 2017 18:09:04 +0000 (+0100) Subject: elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call [BZ #22577] X-Git-Tag: glibc-2.27~305 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f648728cb17bcf043b6f750f360b6c8960c491fd;p=thirdparty%2Fglibc.git elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call [BZ #22577] Changelog: * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call. --- diff --git a/ChangeLog b/ChangeLog index 910bf679d3e..4e4ab69f109 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-12-10 Aurelien Jarno + + [BZ #22577] + * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf + call. + 2017-12-07 H.J. Lu * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines): diff --git a/elf/rtld.c b/elf/rtld.c index 90505aee7d7..cfd3729b8e7 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -730,7 +730,7 @@ init_tls (void) void *tcbp = _dl_allocate_tls_storage (); if (tcbp == NULL) _dl_fatal_printf ("\ -cannot allocate TLS data structures for initial thread"); +cannot allocate TLS data structures for initial thread\n"); /* Store for detection of the special case by __tls_get_addr so it knows not to pass this dtv to the normal realloc. */