From: Andreas Schwab Date: Wed, 2 Jun 1999 02:56:30 +0000 (+0000) Subject: * vms-misc.c (_bfd_vms_hash_newfunc): Fix use of uninitialized X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=015985c9fcc34fb94b31c1bef0e20ef8e9aa2f19;p=deliverable%2Fbinutils-gdb.git * vms-misc.c (_bfd_vms_hash_newfunc): Fix use of uninitialized variable. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f1eb62ff58..5f80d550b4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,8 @@ Wed Jun 2 11:51:12 1999 Andreas Schwab + * vms-misc.c (_bfd_vms_hash_newfunc): Fix use of uninitialized + variable. + * elf32-m68k.c (elf_m68k_adjust_dynamic_symbol): Avoid ambigous `else'. diff --git a/bfd/vms-misc.c b/bfd/vms-misc.c index a5fdae4cc2..81b1fc8c92 100644 --- a/bfd/vms-misc.c +++ b/bfd/vms-misc.c @@ -198,11 +198,12 @@ _bfd_vms_hash_newfunc (entry, table, string) bfd_set_error (bfd_error_no_memory); return (struct bfd_hash_entry *)NULL; } + entry = (struct bfd_hash_entry *) ret; } /* Call the allocation method of the base class. */ - ret = (vms_symbol_entry *) bfd_hash_newfunc ((struct bfd_hash_entry *)ret, table, string); + ret = (vms_symbol_entry *) bfd_hash_newfunc (entry, table, string); #if VMS_DEBUG vms_debug (6, "_bfd_vms_hash_newfunc ret %p\n", ret); #endif