PR 20089
* objcopy.c (group_signature): Fail if the input symbol table has
not been loaded.
2016-06-02 Nick Clifton <nickc@redhat.com>
+ PR 20089
+ * objcopy.c (group_signature): Fail if the input symbol table has
+ not been loaded.
+
* dwarf.c (display_debug_frames): Do not display any
interpretation if the block consists solely of DW__CFA_NOPs.
bfd *abfd = group->owner;
Elf_Internal_Shdr *ghdr;
+ /* PR 20089: An earlier error may have prevented us from loading the symbol table. */
+ if (isympp == NULL)
+ return NULL;
+
if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
return NULL;