summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-06-10 10:18:33 +0000
committerNick Clifton <nickc@redhat.com>2002-06-10 10:18:33 +0000
commita6d4589eff4b7ee770ac31bda14dae45b49719ea (patch)
tree9bb1b4d62cb647a885af420d0ddd20002db085df
parent409ed240c978d7eff2131ea157a781a8bea0adf1 (diff)
downloadbinutils-redhat-a6d4589eff4b7ee770ac31bda14dae45b49719ea.tar.gz
Use htab_create_alloc with calloc, not htab_alloc.
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/elf-strtab.c2
-rw-r--r--bfd/merge.c6
3 files changed, 11 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index d7b6138217..1dfc78df4d 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-10 Geoffrey Keating <geoffk@redhat.com>
+
+ * merge.c (merge_strings): Use htab_create_alloc with calloc, not
+ htab_alloc.
+ * elf-strtab.c (_bfd_elf_strtab_finalize): Likewise.
+
2002-06-08 H.J. Lu <hjl@gnu.org>
* elf.c (copy_private_bfd_data): Don't cast to bfd_size_type to
diff --git a/bfd/elf-strtab.c b/bfd/elf-strtab.c
index e2568a3f69..7a993c252f 100644
--- a/bfd/elf-strtab.c
+++ b/bfd/elf-strtab.c
@@ -352,7 +352,7 @@ _bfd_elf_strtab_finalize (tab)
qsort (array, size, sizeof (struct elf_strtab_hash_entry *), cmplengthentry);
- last4tab = htab_create (size * 4, NULL, last4_eq, NULL);
+ last4tab = htab_create_alloc (size * 4, NULL, last4_eq, NULL, calloc, free);
if (last4tab == NULL)
goto alloc_failure;
diff --git a/bfd/merge.c b/bfd/merge.c
index 9af93b0f1a..866b69ce73 100644
--- a/bfd/merge.c
+++ b/bfd/merge.c
@@ -652,8 +652,10 @@ merge_strings (sinfo)
qsort (array, (size_t) sinfo->htab->size,
sizeof (struct sec_merge_hash_entry *), cmplengthentry);
- last4tab = htab_create ((size_t) sinfo->htab->size * 4, NULL, last4_eq, NULL);
- lasttab = htab_create ((size_t) sinfo->htab->size * 4, NULL, last_eq, NULL);
+ last4tab = htab_create_alloc ((size_t) sinfo->htab->size * 4,
+ NULL, last4_eq, NULL, calloc, free);
+ lasttab = htab_create_alloc ((size_t) sinfo->htab->size * 4,
+ NULL, last_eq, NULL, calloc, free);
if (lasttab == NULL || last4tab == NULL)
goto alloc_failure;