From patchwork Sun Dec 10 18:11:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 24846 Received: (qmail 100990 invoked by alias); 10 Dec 2017 18:11:57 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 100978 invoked by uid 89); 10 Dec 2017 18:11:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*r:120 X-HELO: hall.aurel32.net From: Aurelien Jarno To: libc-alpha@sourceware.org Cc: Aurelien Jarno Subject: [COMMITTED] elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call [BZ #22577] Date: Sun, 10 Dec 2017 19:11:44 +0100 Message-Id: <20171210181144.14843-1-aurelien@aurel32.net> Changelog: * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call. --- ChangeLog | 6 ++++++ elf/rtld.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 910bf679d3..4e4ab69f10 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 90505aee7d..cfd3729b8e 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. */