aboutsummaryrefslogtreecommitdiff
path: root/gdb/corelow.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2020-08-05 18:29:33 -0700
committerKevin Buettner <kevinb@redhat.com>2020-08-05 18:57:53 -0700
commitb5582ab72f025c54d4a6e8f459f78a8c92e6df29 (patch)
treee58877697b0a5bb84d139373ba21d39eff8cfdd8 /gdb/corelow.c
parentf5750f89e3c5447027f29881e5484e1fda83912b (diff)
downloadbinutils-b5582ab72f025c54d4a6e8f459f78a8c92e6df29.zip
binutils-b5582ab72f025c54d4a6e8f459f78a8c92e6df29.tar.gz
binutils-b5582ab72f025c54d4a6e8f459f78a8c92e6df29.tar.bz2
Don't output null pathname in core_target::build_file_mappings warning
While looking into the regressions reported by Luis Machado, I noticed that null pathnames were being output in the warnings. E.g. warning: Can't open file (null) during file-backed mapping note processing I've changed the warning to output the pathname found in the note, like this: warning: Can't open file /var/lib/docker/aufs/diff/d07c...e21/lib/x86_64-linux-gnu/libc-2.27.so during file-backed mapping note processing (I've shortened one of the path elements above.) gdb/ChangeLog: * corelow.c (core_target::build_file_mappings): Don't output null pathname in warning.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r--gdb/corelow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 367f54c..b6ee219 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -218,7 +218,7 @@ core_target::build_file_mappings ()
{
warning (_("Can't open file %s during file-backed mapping "
"note processing"),
- expanded_fname.get ());
+ filename);
return;
}