* hash.c (bfd_hash_lookup): Correct stray line.

This commit is contained in:
Alan Modra
2006-06-06 03:04:12 +00:00
parent d3fd40746a
commit 0bef4ce538
2 changed files with 3 additions and 1 deletions

View 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)
{