From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 31608 invoked from network); 11 Apr 2022 12:46:30 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 11 Apr 2022 12:46:30 -0000 Received: (qmail 5355 invoked by uid 550); 11 Apr 2022 12:46:28 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 5334 invoked from network); 11 Apr 2022 12:46:27 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1649681176; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ouRUqZH1nINkns0tehBcy7LVynKxM7lH1TLmH4HmgBw=; b=HOnbHjche3iKpFQx2PDDtIt+WMf6K+0jsf2B7/iWCD0TjTnEd0j4CQlrEzrIj/y5Ao2Y4A zDx+8XFMfIDhsY+5RKo0O3hicUXAFNrL4reeVLKz9qPS6cWTjU8MKnYnKaaQYyE1Ktw07/ +PDMeNrr+DcKRWcSsiPPWMTR3RyQhwA= X-MC-Unique: s_CLwHbfPWac2lGCeNRj0g-1 From: Florian Weimer To: Jeffrey Walton Cc: musl@lists.openwall.com, Colin Cross References: <20220405031859.17673-1-ccross@google.com> Date: Mon, 11 Apr 2022 14:46:10 +0200 In-Reply-To: (Jeffrey Walton's message of "Mon, 11 Apr 2022 08:24:21 -0400") Message-ID: <87tuazlre5.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.11.54.1 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=fweimer@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [musl] [PATCH] dl_iterate_phdr: return empty string for the name of the main program * Jeffrey Walton: > I may be splitting hairs, but the dl_iterate_phdr(3) man page does not > say a program is returned during the enumeration. It says shared > objects are returned. The libgcc unwinder assumes the main program is covered by the iteration. It won't work otherwise. Thanks, Florian