public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Eric Botcazou <ebotcazou@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r13-3756] Fix NULL filename handling
Date: Mon,  7 Nov 2022 16:36:55 +0000 (GMT)	[thread overview]
Message-ID: <20221107163655.5796D3858407@sourceware.org> (raw)

https://gcc.gnu.org/g:9aa1b63a5554563b7a3081391358d6cedcabea88

commit r13-3756-g9aa1b63a5554563b7a3081391358d6cedcabea88
Author: Richard Purdie <richard.purdie@linuxfoundation.org>
Date:   Mon Nov 7 17:26:44 2022 +0100

    Fix NULL filename handling
    
    The previous commit introduced a regression as some Ada tests end up passing
    NULL as the filename to remap_filename.  Handle this as before to fix them.
    
    gcc/
            * file-prefix-map.cc (remap_filename): Handle NULL filenames.

Diff:
---
 gcc/file-prefix-map.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/file-prefix-map.cc b/gcc/file-prefix-map.cc
index 439586bd2b5..40b10edcf92 100644
--- a/gcc/file-prefix-map.cc
+++ b/gcc/file-prefix-map.cc
@@ -73,7 +73,7 @@ remap_filename (file_prefix_map *maps, const char *filename)
   char *realname;
   size_t name_len;
 
-  if (lbasename (filename) == filename)
+  if (!filename || lbasename (filename) == filename)
     return filename;
 
   realname = lrealpath (filename);

                 reply	other threads:[~2022-11-07 16:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221107163655.5796D3858407@sourceware.org \
    --to=ebotcazou@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).