Index: bfd/i386linux.c |
diff --git a/bfd/i386linux.c b/bfd/i386linux.c |
index 33a680893d4548194a631f42a836f34fa584e7c4..65ae5c9c6df82c714192c0a2649a1040b5ef9e05 100644 |
--- a/bfd/i386linux.c |
+++ b/bfd/i386linux.c |
@@ -204,7 +204,7 @@ linux_link_hash_table_create (bfd *abfd) |
struct linux_link_hash_table *ret; |
bfd_size_type amt = sizeof (struct linux_link_hash_table); |
- ret = (struct linux_link_hash_table *) bfd_alloc (abfd, amt); |
+ ret = (struct linux_link_hash_table *) bfd_zmalloc (amt); |
if (ret == (struct linux_link_hash_table *) NULL) |
return (struct bfd_link_hash_table *) NULL; |
if (!NAME(aout,link_hash_table_init) (&ret->root, abfd, |
@@ -215,11 +215,6 @@ linux_link_hash_table_create (bfd *abfd) |
return (struct bfd_link_hash_table *) NULL; |
} |
- ret->dynobj = NULL; |
- ret->fixup_count = 0; |
- ret->local_builtins = 0; |
- ret->fixup_list = NULL; |
- |
return &ret->root.root; |
} |