From d445b2f6a4492b74f6fa5cb21d8b95ccf4f8edd9 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 4 May 2013 06:19:31 +0000 Subject: * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead of bfd_count_sections. * solib-target.c (solib_target_relocate_section_addresses): Ditto. * symfile.c (default_symfile_offsets): Ditto. (syms_from_objfile_1): Ditto. Make dummy addrs list an array of one entry, not bfd_count_sections entries. --- gdb/objfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/objfiles.c') diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 93b7ba7..2e13421 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -880,7 +880,7 @@ objfile_relocate (struct objfile *objfile, struct section_offsets *new_offsets) addr_info_make_relative (objfile_addrs, debug_objfile->obfd); gdb_assert (debug_objfile->num_sections - == bfd_count_sections (debug_objfile->obfd)); + == gdb_bfd_count_sections (debug_objfile->obfd)); new_debug_offsets = xmalloc (SIZEOF_N_SECTION_OFFSETS (debug_objfile->num_sections)); make_cleanup (xfree, new_debug_offsets); -- cgit v1.1