Always set up sh_name in assign_section_numbers
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 20 Apr 2015 19:37:14 +0000 (12:37 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 20 Apr 2015 19:37:14 +0000 (12:37 -0700)
commite97029632cfacf9d8b65e2cf3051a932f19f9ebf
treeff07963abe3d74809c505215cf414258c3bcaa61
parentbe59ad3d96fa78d97193698eb7c6309489493712
Always set up sh_name in assign_section_numbers

commit 9ad5cbcfb23cb74d34bd04f88f4e47c0f5de5155 added the initial support
for more than 64k ELF sections with holes for reserved section indices in
section header table and set entries of reserved section indices in
section header table to index 0:

   for (secn = 1; secn < section_number; ++secn)
-    i_shdrp[secn]->sh_name = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
-                                                    i_shdrp[secn]->sh_name);
-
+    if (i_shdrp[secn] == NULL)
+      i_shdrp[secn] = i_shdrp[0];
+    else
+      i_shdrp[secn]->sh_name = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
+ i_shdrp[secn]->sh_name);

commit 4fbb74a6055f7d48f09c44064073d3b1e99c6642 removed holes in section
header table.  Check for i_shdrp[secn] == NULL is no longer needed now.
This patch removes it.

* elf.c (assign_section_numbers): Always set up sh_name.
bfd/ChangeLog
bfd/elf.c
This page took 0.031204 seconds and 4 git commands to generate.