From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 134873858D32 for ; Fri, 24 Nov 2023 20:42:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 134873858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 134873858D32 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700858547; cv=none; b=uTAmL2wM9HnYPeGy7eKvm3bH/OuFcAkg6haq/KZJvTDF7YERDzYuDTM0yOQ3hw3dZ6vUiwTLCDfEMD5KzD1jIH7FU5NeGSZU3cY8AQC0d5X9UeKGIyai3ro6gHJVXIPgnyy+euJ+JGQPWMD2r0EYQzFRRr56WyhUuepQOOOctZ4= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700858547; c=relaxed/simple; bh=b8GFrPId5s6D1bEHfLPfAmVGZiQhpRfEGxEpOrAS1IU=; h=DKIM-Signature:Message-ID:Date:MIME-Version:Subject:To:From; b=uh4BJ4JjMOUwPuQX0AfDmEOIilzjVRGUmJpJ900ffhyiCpPvCibTOEo9xAaWxa6mj5C8ig9AbRGZq0VQXKCyMX+71a2IkcfzJCEGpNRWZQT5T+4xJLWUHkKvG2RN5GRieBQ+vtOTsfNrgbEdRtvzqjDvVxK6u1FOui7xZQcmXYA= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1700858545; bh=b8GFrPId5s6D1bEHfLPfAmVGZiQhpRfEGxEpOrAS1IU=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=gs3hLJ8YNanh+wBvG+YUoVNgD5avwWNQFbmDpsLVC3QLXQDk2tfkyt4sXqh0xomhH rm26jKcvJ7Mu/57N/xvNGNdWM1Hre8m91+3c65KCILzvoS4PttqAlh1kLlePX8fpJW HnuO0XHAlAEO6twvC7a2AXNi+DtNQEIA9jBKQt8k= Received: from [172.16.0.146] (192-222-143-198.qc.cable.ebox.net [192.222.143.198]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id EFB191E091; Fri, 24 Nov 2023 15:42:24 -0500 (EST) Message-ID: Date: Fri, 24 Nov 2023 15:42:24 -0500 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Assertion `idx >= 0 && idx < num_fields ()' failed. Content-Language: fr To: Tom Tromey , mail@simon-woerner.de Cc: gdb@sourceware.org References: <87wmu9hhu5.fsf@tromey.com> <77df76a0525202bbbad9520a0467a5075efbd12c@brn.li> <87o7fjxgel.fsf@tromey.com> From: Simon Marchi In-Reply-To: <87o7fjxgel.fsf@tromey.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 11/24/23 11:30, Tom Tromey wrote: >> I'm using the latest version: >> ``` >> $ gdb --version >> GNU gdb (GDB) 13.2 >> [...] >> ``` > > I suspect this is https://sourceware.org/bugzilla/show_bug.cgi?id=29735 > which I believe is fixed for gdb 14. > > Tom You're right, I was able to reproduce and just finished bisecting it. The other crash mentionned, when using tab-completion, is also fixed, by this commit: https://gitlab.com/gnutools/binutils-gdb/-/commit/6e7eef72164c00d6a5a7b0bce9fa01f5481f33cb Simon