Fix typo in _bfd_elf_strtab_add
authorMaks Naumov <maksqwe1@ukr.net>
Fri, 11 Jul 2014 14:25:30 +0000 (23:55 +0930)
committerAlan Modra <amodra@gmail.com>
Fri, 11 Jul 2014 14:32:06 +0000 (00:02 +0930)
PR 17141
* elf.c (_bfd_elf_strtab_add): Check strtab name for failure.

bfd/ChangeLog
bfd/elf.c

index 1a84fc5..6b081f9 100644 (file)
@@ -1,3 +1,8 @@
+2014-07-11  Maks Naumov  <maksqwe1@ukr.net>
+
+       PR 17141
+       * elf.c (_bfd_elf_strtab_add): Check strtab name for failure.
+
 2014-07-08  Nick Clifton  <nickc@redhat.com>
 
        PR ld/17110
index 3f377d1..9dc6b6d 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -5298,7 +5298,7 @@ prep_headers (bfd *abfd)
   elf_tdata (abfd)->shstrtab_hdr.sh_name =
     (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
   if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
-      || elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
+      || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
       || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
     return FALSE;