USe is_elf_hash_table() to check for the presence of an elf_link_hash_table

This commit is contained in:
Nick Clifton
2003-05-21 09:23:07 +00:00
parent b9b171fb1a
commit 385a4c14f3
2 changed files with 8 additions and 2 deletions

View File

@@ -1616,7 +1616,7 @@ bfd_elf_get_needed_list (abfd, info)
bfd *abfd ATTRIBUTE_UNUSED;
struct bfd_link_info *info;
{
if (info->hash->creator->flavour != bfd_target_elf_flavour)
if (! is_elf_hash_table (info))
return NULL;
return elf_hash_table (info)->needed;
}
@@ -1629,7 +1629,7 @@ bfd_elf_get_runpath_list (abfd, info)
bfd *abfd ATTRIBUTE_UNUSED;
struct bfd_link_info *info;
{
if (info->hash->creator->flavour != bfd_target_elf_flavour)
if (! is_elf_hash_table (info))
return NULL;
return elf_hash_table (info)->runpath;
}