* hash.c (bfd_hash_lookup): Correct stray line.
authorAlan Modra <amodra@gmail.com>
Tue, 6 Jun 2006 03:04:12 +0000 (03:04 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 6 Jun 2006 03:04:12 +0000 (03:04 +0000)
bfd/ChangeLog
bfd/hash.c

index 55ebb6ed709e980f2637a35cc919298d5913bf99..9315a7bcb88e09028e2b3444529c54edeb692b3f 100644 (file)
@@ -1,5 +1,7 @@
 2006-06-06  Alan Modra  <amodra@bigpond.net.au>
 
+       * 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.
index ed0a10d619816111572e765f2fc36d1643b4a041..3cc4f79644e756fb3ebb99f00b4b0a3e12db679c 100644 (file)
@@ -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)
     {
This page took 0.027741 seconds and 4 git commands to generate.