* simple.c (bfd_simple_get_relocated_section_contents): Free the
hash table using _bfd_generic_link_hash_table_free.
This commit is contained in:
parent
ea16ac837f
commit
010b84c1d3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-09-23 Alan Modra <alan@modra.org>
|
||||||
|
|
||||||
|
* simple.c (bfd_simple_get_relocated_section_contents): Free the
|
||||||
|
hash table using _bfd_generic_link_hash_table_free.
|
||||||
|
|
||||||
2003-09-23 Alan Modra <alan@modra.org>
|
2003-09-23 Alan Modra <alan@modra.org>
|
||||||
|
|
||||||
* elf-bfd.h (struct bfd_elf_special_section): Remove "suffix". Change
|
* elf-bfd.h (struct bfd_elf_special_section): Remove "suffix". Change
|
||||||
|
|
|
@ -265,7 +265,7 @@ bfd_simple_get_relocated_section_contents (bfd *abfd,
|
||||||
bfd_map_over_sections (abfd, simple_restore_output_info, saved_offsets);
|
bfd_map_over_sections (abfd, simple_restore_output_info, saved_offsets);
|
||||||
free (saved_offsets);
|
free (saved_offsets);
|
||||||
|
|
||||||
bfd_link_hash_table_free (abfd, link_info.hash);
|
_bfd_generic_link_hash_table_free (link_info.hash);
|
||||||
|
|
||||||
RETURN (contents);
|
RETURN (contents);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue