From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bumble.maple.relay.mailchannels.net (bumble.maple.relay.mailchannels.net [23.83.214.25]) by sourceware.org (Postfix) with ESMTPS id 922553857001 for ; Tue, 22 Jun 2021 14:52:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 922553857001 X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 2CB43702DB3 for ; Tue, 22 Jun 2021 14:44:23 +0000 (UTC) Received: from pdx1-sub0-mail-a45.g.dreamhost.com (100-101-162-61.trex-nlb.outbound.svc.cluster.local [100.101.162.61]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id 6F22D702F59 for ; Tue, 22 Jun 2021 14:44:22 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from pdx1-sub0-mail-a45.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384) by 100.101.162.61 (trex/6.3.3); Tue, 22 Jun 2021 14:44:22 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: dreamhost|x-authsender|siddhesh@gotplt.org X-MailChannels-Auth-Id: dreamhost X-Shelf-Wiry: 2733b7ea18624edd_1624373062724_1876802247 X-MC-Loop-Signature: 1624373062724:4035990992 X-MC-Ingress-Time: 1624373062724 Received: from pdx1-sub0-mail-a45.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a45.g.dreamhost.com (Postfix) with ESMTP id 9440C7F60C for ; Tue, 22 Jun 2021 07:44:21 -0700 (PDT) Received: from rhbox.intra.reserved-bit.com (unknown [1.186.101.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: siddhesh@gotplt.org) by pdx1-sub0-mail-a45.g.dreamhost.com (Postfix) with ESMTPSA id CC2167F11B for ; Tue, 22 Jun 2021 07:44:16 -0700 (PDT) X-DH-BACKEND: pdx1-sub0-mail-a45 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [COMMITTED] malloc: Drop __malloc_initialized from Versions Date: Tue, 22 Jun 2021 20:14:08 +0530 Message-Id: <20210622144408.812371-1-siddhesh@sourceware.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-3494.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_NONE, KAM_DMARC_STATUS, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jun 2021 14:52:50 -0000 __malloc_initialized is mentioned in Versions when it is actually an internal symbol. The resultant binaries are identical. --- malloc/Versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/Versions b/malloc/Versions index 6693c46ee2..62e4698a08 100644 --- a/malloc/Versions +++ b/malloc/Versions @@ -9,7 +9,7 @@ libc { __libc_valloc; __malloc_initialize_hook; __free_hook; __malloc_hook; __realloc_hook= ; __memalign_hook; __after_morecore_hook; - __malloc_initialized; __default_morecore; __morecore; + __default_morecore; __morecore; =20 # functions used in inline functions or macros _obstack_allocated_p; _obstack_begin; _obstack_begin_1; --=20 2.31.1