From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x102e.google.com (mail-pj1-x102e.google.com [IPv6:2607:f8b0:4864:20::102e]) by sourceware.org (Postfix) with ESMTPS id D580D3858C5E; Fri, 10 Mar 2023 03:59:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D580D3858C5E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-pj1-x102e.google.com with SMTP id u3-20020a17090a450300b00239db6d7d47so3981401pjg.4; Thu, 09 Mar 2023 19:59:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678420785; h=content-transfer-encoding:in-reply-to:from:references:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=oW5YCNtXaj4rDzJKMF3SLCp5CffeCh6e3KKaB9Se3NM=; b=ImkC+MpRhKx8uxC1yPW8jfMuXznsJbf+8SgCP0Vsm5aLOQD0STdCdOFq3RGWalFcUY LiiElyNZl3Jy1Jl1n83djzLCSnomJzxppvQBe+OM8RuV/cZcbbU7De4cXpi9amMFh+NM IZ9ql3vJfg2VUJ4OuEsteFW2UNMfUljDJkf6EzXG1eqX9ykAVBnKM0r/rAiZ02yMKbjR KHOyWVEgdXGQ9QU7OEA0GJ8TabqRkaesGZLDM3ZZQVx4rsfJgvIXgawfop/RXS75aP4P r4eAb1dMsdJ1ZoKRPblx9L/jFj5exB36pm+8N5Fw5D5TdhxA5b88M2f3xla7+W9HaXoQ XRIg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678420785; h=content-transfer-encoding:in-reply-to:from:references:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=oW5YCNtXaj4rDzJKMF3SLCp5CffeCh6e3KKaB9Se3NM=; b=iZwdoOWU+clii3699unCWlyKLaryYkSzYH5DcDIJGl/q/90HSB4QMVAVkJ+gL+0cMN hs7HDF/bkJqR+htjWYujgT1EcOyQ8Ri+dwNJtFMNrNfs2KbsQbb+KHN1VPrBPDf2Zo88 QpepKld1GQRH4fHRbdx11WwPIILrqgZcX7BHu54fjdjiubhA9BYBNA3ohsVMyit/aH9M euORHiXMU9ZSXxM+EoKZBWbwPJo9jcfY91JDPLzauXhIVzooeSNG80rw+/xro8NizVRO 8ECJm1mPk8zSVxmzU9qGXhb6GDCKWizoQfffrhvBxk7WEAmigzyE4ptbUqU3W2dOeEqh shlQ== X-Gm-Message-State: AO0yUKUwals7eAvZgRMAUSYlDywaU44R0D83YieXQNM0qCYyPDlm6d6j amUICXXQxk9D2NqI3xhho7Q= X-Google-Smtp-Source: AK7set/nHiuRLgm9Cfli+b51ux9kY8PTucAbqZ3TdALnNtt1KEC61gpX8tzMhVtjbe6sehxbvSVGjg== X-Received: by 2002:a05:6a21:32a2:b0:cd:9bcf:d251 with SMTP id yt34-20020a056a2132a200b000cd9bcfd251mr1475463pzb.0.1678420784888; Thu, 09 Mar 2023 19:59:44 -0800 (PST) Received: from [192.168.1.20] ([50.37.188.226]) by smtp.gmail.com with ESMTPSA id h15-20020aa786cf000000b005d62cd8a3c9sm337475pfo.71.2023.03.09.19.59.44 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 09 Mar 2023 19:59:44 -0800 (PST) Message-ID: <61dc639a-2ae3-9409-a2fd-dc0e71c8aac5@gmail.com> Date: Thu, 9 Mar 2023 19:59:44 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [PATCH] Fortran: fix ICE with bind(c) in block data [PR104332] Content-Language: en-US To: Harald Anlauf , fortran , gcc-patches References: From: Jerry D In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,NICE_REPLY_A,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP 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 3/9/23 10:08 AM, Harald Anlauf via Fortran wrote: > Dear all, > > the attached almost obvious patch fixes a NULL pointer dereference > in a check of a symbol with the bind(c) attribute. > > Regtested on x86_64-pc-linux-gnu. OK for mainline? > > This PR is marked as 10/11/12/13 regression, thus it should > qualify for a backport. It's simple enough anyway. > > Thanks, > Harald > OK, please proceed. Thanks for the patch. Jerry