mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
* symfile.c (syms_from_objfile_1): Use correct section count when
objfile->sf == NULL.
This commit is contained in:
parent
b5364c9e51
commit
a7bfba49b2
@ -1,3 +1,8 @@
|
||||
2013-05-06 Doug Evans <dje@google.com>
|
||||
|
||||
* symfile.c (syms_from_objfile_1): Use correct section count when
|
||||
objfile->sf == NULL.
|
||||
|
||||
2013-05-06 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* common/linux-btrace.c (intel_supports_btrace): Fix indentation.
|
||||
|
@ -949,7 +949,7 @@ syms_from_objfile_1 (struct objfile *objfile,
|
||||
/* No symbols to load, but we still need to make sure
|
||||
that the section_offsets table is allocated. */
|
||||
int num_sections = gdb_bfd_count_sections (objfile->obfd);
|
||||
size_t size = SIZEOF_N_SECTION_OFFSETS (num_offsets);
|
||||
size_t size = SIZEOF_N_SECTION_OFFSETS (num_sections);
|
||||
|
||||
objfile->num_sections = num_sections;
|
||||
objfile->section_offsets
|
||||
|
Loading…
Reference in New Issue
Block a user