mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
* vms-misc.c (_bfd_vms_hash_newfunc): Fix use of uninitialized
variable.
This commit is contained in:
parent
70f06c4ad0
commit
015985c9fc
@ -1,5 +1,8 @@
|
||||
Wed Jun 2 11:51:12 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||
|
||||
* vms-misc.c (_bfd_vms_hash_newfunc): Fix use of uninitialized
|
||||
variable.
|
||||
|
||||
* elf32-m68k.c (elf_m68k_adjust_dynamic_symbol): Avoid ambigous
|
||||
`else'.
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user