From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 92863 invoked by alias); 1 Aug 2019 16:13:24 -0000 Mailing-List: contact libc-stable-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: List-Archive: Sender: libc-stable-owner@sourceware.org Received: (qmail 92835 invoked by uid 89); 1 Aug 2019 16:13:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-18.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-18.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 01 Aug 2019 16:13:22 +0000 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F37E1301A8D3 for ; Thu, 1 Aug 2019 16:13:20 +0000 (UTC) Received: from oldenburg2.str.redhat.com (ovpn-116-37.ams2.redhat.com [10.36.116.37]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BFB4219C65 for ; Thu, 1 Aug 2019 16:13:20 +0000 (UTC) Received: by oldenburg2.str.redhat.com (Postfix, from userid 1000) id E3F0D81DAD88; Thu, 1 Aug 2019 18:13:18 +0200 (CEST) Date: Tue, 01 Jan 2019 00:00:00 -0000 To: libc-stable@sourceware.org Subject: [2.30 COMMITTED] malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867] User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20190801161318.E3F0D81DAD88@oldenburg2.str.redhat.com> From: Florian Weimer X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Thu, 01 Aug 2019 16:13:21 +0000 (UTC) X-IsSubscribed: yes X-SW-Source: 2019-08/txt/msg00000.txt.bz2 It was introduced in commit 6c8dbf00f536d78b1937b5af6f57be47fd376344 ("Reformat malloc to gnu style."). Reviewed-by: Carlos O'Donell (cherry picked from commit b0f6679bcd738ea244a14acd879d974901e56c8e) 2019-08-01 Florian Weimer [BZ #24867] * malloc/malloc.c (__malloc_info): Remove unwanted leading whitespace. diff --git a/NEWS b/NEWS index ee9ed4de5a..2a57721d72 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,13 @@ See the end for copying conditions. Please send GNU C library bug reports via using `glibc' in the "product" field. +Version 2.30.1 + +The following bugs are resolved with this release: + + [24867] malloc: Remove unwanted leading whitespace in malloc_info + + Version 2.30 Major new features: diff --git a/malloc/malloc.c b/malloc/malloc.c index 00ce48cf58..343d89f489 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5491,7 +5491,7 @@ __malloc_info (int options, FILE *fp) for (size_t i = 0; i < nsizes; ++i) if (sizes[i].count != 0 && i != NFASTBINS) - fprintf (fp, " \ + fprintf (fp, "\ \n", sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);