From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id MMt8GmS46mKvASAAWB0awg (envelope-from ) for ; Wed, 03 Aug 2022 14:03:16 -0400 Received: by simark.ca (Postfix, from userid 112) id 5C1F81EA05; Wed, 3 Aug 2022 14:03:16 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=W159E2sd; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A,RDNS_DYNAMIC, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 8282E1E9EB for ; Wed, 3 Aug 2022 14:03:15 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id DA38B3858038 for ; Wed, 3 Aug 2022 18:03:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DA38B3858038 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1659549794; bh=eq6b82LOhu2Xt83+PYjz/n79j2jg55Mg0+1xXLlbRzo=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=W159E2sdWdiVU7LklGBKnPw6dVzgwJ1cRggNC2kHyoHx+AaBXZFn27ysvGPCgk+Hr EM/OmhqYMZlNIaxprDFJrjlZ+SUusqc95ykkfmwVG1Cdl6q6MkjEaVe7xxpm2019Nm bg0VK2i0C2WR0GCwE1VG3qOglmkT5YH7oS4y677g= Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id B8A373858C39 for ; Wed, 3 Aug 2022 18:02:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B8A373858C39 Received: from [172.16.0.95] (192-222-180-24.qc.cable.ebox.net [192.222.180.24]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 0AFDE1E9EB; Wed, 3 Aug 2022 14:02:52 -0400 (EDT) Message-ID: <859d0559-8dfe-6ee9-f66c-25db84e466aa@simark.ca> Date: Wed, 3 Aug 2022 14:02:51 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: [PATCH 0/3] Fix regressions caused by registry series Content-Language: fr To: Tom Tromey , gdb-patches@sourceware.org References: <20220802201459.2839634-1-tom@tromey.com> In-Reply-To: <20220802201459.2839634-1-tom@tromey.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 8/2/22 16:14, Tom Tromey wrote: > This series fixes the regressions caused by the registry series that > Simon pointed out. The basic problem is some use-after-frees, fixed > here by rearranging objfile so that the data in question lives a bit > longer. > > Tom > > Thanks, that seems to fix the issues I saw, and it LGTM. Simon