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: 846690 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-87998-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="g3qIhwNn"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yvvLg72XDz9t1t for ; Mon, 11 Dec 2017 05:12:08 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=JZAr3Ql3Yt67/zkClSTJVm6/JiE2J2/aZnXBj++Se07UStr8OWS2F hKxhK2GM3dkiFxbOqxA/1BJjANMkDt1oA5itg9eKYgQG3lk06aWwJPf0iZu0e3wi qoQNIaImxKZ7yna8u1LpxuXfqwHu7M2cuJl4lXz09SdE///Vz/LmKc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=+M1DYN7A98/b2ObxQ+4Yfkopuq4=; b=g3qIhwNnf04ufgS/EO6b1Bij43RF Nc0TGcNVKQwn8wx5Bh9PP2GchDNZ1aPcftEV3j9DNcA2dtrZy7ZaOu+yW+NYMxDL s2tr9+5HQGkCa5kVuLTi04zTt6cPwYYRf3Ww/c+eJDge6/q2jaZmDh7Qd3bPgVXA q+3kI6wM6fiF/xg= 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. */