diff options
author | Richard Henderson <rth@redhat.com> | 2001-10-25 06:32:29 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-10-25 06:32:29 +0000 |
commit | 56628232a5ffdd66765da4b82534ebc4ce484833 (patch) | |
tree | b7bca4c7577d6b50842923a1b126d3c5452fd14f | |
parent | bc1a30647628096d71e51652dbfe88c8688e6537 (diff) | |
download | gdb-56628232a5ffdd66765da4b82534ebc4ce484833.zip gdb-56628232a5ffdd66765da4b82534ebc4ce484833.tar.gz gdb-56628232a5ffdd66765da4b82534ebc4ce484833.tar.bz2 |
2001-08-23 Jakub Jelinek <jakub@redhat.com>
* elfxx-ia64.c (elfNN_ia64_hash_table_create): Clear ia64_info.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfxx-ia64.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fcfc6c9..8092dbf 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-10-24 Richard Henderson <rth@redhat.com> + + 2001-08-23 Jakub Jelinek <jakub@redhat.com> + * elfxx-ia64.c (elfNN_ia64_hash_table_create): Clear ia64_info. + 2001-10-06 Stephane Carrez <Stephane.Carrez@worldnet.fr> * dwarf2.c (comp_unit_find_nearest_line): Check for end of diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index c86f7a9..ee69168 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -1437,7 +1437,7 @@ elfNN_ia64_hash_table_create (abfd) { struct elfNN_ia64_link_hash_table *ret; - ret = bfd_alloc (abfd, sizeof (*ret)); + ret = bfd_zalloc (abfd, sizeof (*ret)); if (!ret) return 0; if (!_bfd_elf_link_hash_table_init (&ret->root, abfd, |