diff options
author | Alan Modra <amodra@gmail.com> | 2020-05-20 07:59:00 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-05-20 07:59:00 +0930 |
commit | c7e976792002c6a2810f9bb6cc3ad210514eb650 (patch) | |
tree | edda6f42af6427ed4643c40ba52cd62d17a867ee /gdb/solib-aix.c | |
parent | 76571211fe65c4942f3ce4e04115a0396cd2522c (diff) | |
download | binutils-c7e976792002c6a2810f9bb6cc3ad210514eb650.zip binutils-c7e976792002c6a2810f9bb6cc3ad210514eb650.tar.gz binutils-c7e976792002c6a2810f9bb6cc3ad210514eb650.tar.bz2 |
Use bfd_get_filename throughout gdb
This patch makes gdb use the inline accessor for all bfd->filename
read accesses.
* coff-pe-read.c (read_pe_exported_syms): Use bfd_get_filename
rather than accessing bfd->filename directly.
* dtrace-probe.c (dtrace_static_probe_ops::get_probes): Likewise,
and use bfd_section_name.
* dwarf2/frame.c (decode_frame_entry): Likewise.
* exec.c (exec_set_section_address): Likewise.
* solib-aix.c (solib_aix_bfd_open): Likewise.
* stap-probe.c (get_stap_base_address): Likewise.
* symfile.c (reread_symbols): Likewise.
Diffstat (limited to 'gdb/solib-aix.c')
-rw-r--r-- | gdb/solib-aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib-aix.c b/gdb/solib-aix.c index 125c896..5da1214 100644 --- a/gdb/solib-aix.c +++ b/gdb/solib-aix.c @@ -611,7 +611,7 @@ solib_aix_bfd_open (const char *pathname) (gdb_bfd_openr_next_archived_file (archive_bfd.get (), NULL)); while (object_bfd != NULL) { - if (member_name == object_bfd->filename) + if (member_name == bfd_get_filename (object_bfd.get ())) break; object_bfd = gdb_bfd_openr_next_archived_file (archive_bfd.get (), |