diff options
author | Alan Modra <amodra@gmail.com> | 2019-09-18 10:34:46 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-09-18 21:32:51 +0930 |
commit | 90d92a632aaf75ce698335efeb383ddf785c12d8 (patch) | |
tree | 66d29393e4100245fd03bfd25d97e98861772cf2 /ld/ChangeLog | |
parent | PowerPC64, support medium model access to common symbols (diff) | |
download | binutils-gdb-90d92a632aaf75ce698335efeb383ddf785c12d8.tar.gz binutils-gdb-90d92a632aaf75ce698335efeb383ddf785c12d8.tar.bz2 binutils-gdb-90d92a632aaf75ce698335efeb383ddf785c12d8.zip |
Use bfd_set_filename more
Fixes a few leaks in bfd and ld.
bfd/
* mach-o.c (bfd_mach_o_fat_member_init): Likewise. Replace
xstrdup and xmalloc with bfd_strdup and bfd_malloc. Return an
error status. Adjust calls.
* vms-lib.c (_bfd_vms_lib_get_module): Test mhd->id earlier.
Close bfd on failure. Replace xstrdup/bfd_alloc use with
bfd_malloc. Use bfd_set_filename.
gdb/
* solib-spu.c (spu_bfd_open): Use bfd_set_filename.
* spu-linux-nat.c (spu_bfd_open): Likewise.
ld/
* emultempl/pe.em (after_open): Use bfd_set_filename.
* emultempl/pep.em (after_open): Use bfd_set_filename.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index ea28a0b56fb..81935a408c5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2019-09-18 Alan Modra <amodra@gmail.com> + + * emultempl/pe.em (after_open): Use bfd_set_filename. + * emultempl/pep.em (after_open): Use bfd_set_filename. + 2019-09-16 Alan Modra <amodra@gmail.com> PR 25002 |