From 0bef4ce53867deab8b2876677d6c201b87a85a27 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 6 Jun 2006 03:04:12 +0000 Subject: [PATCH] * hash.c (bfd_hash_lookup): Correct stray line. --- bfd/ChangeLog | 2 ++ bfd/hash.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 55ebb6e..9315a7b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,7 @@ 2006-06-06 Alan Modra + * hash.c (bfd_hash_lookup): Correct stray line. + * elf.c (_bfd_elf_init_private_section_data): Comment typo. (elfcore_grok_nto_status): Use long instead of pid_t. (elfcore_grok_nto_regs, elfcore_grok_nto_note): Likewise. diff --git a/bfd/hash.c b/bfd/hash.c index ed0a10d..3cc4f79 100644 --- a/bfd/hash.c +++ b/bfd/hash.c @@ -455,7 +455,6 @@ bfd_hash_lookup (struct bfd_hash_table *table, if (copy) { char *new; - table->count ++; new = objalloc_alloc ((struct objalloc *) table->memory, len + 1); if (!new) @@ -470,6 +469,7 @@ bfd_hash_lookup (struct bfd_hash_table *table, hashp->hash = hash; hashp->next = table->table[index]; table->table[index] = hashp; + table->count++; if (table->count > table->size * 3 / 4) { -- 2.7.4