diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a917631b38..505da06add 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2020-03-02 H.J. Lu + + * trad-core.c (trad_unix_core_file_p): Return bfd_cleanup. + 2020-03-02 Alan Modra * targets.c (bfd_cleanup): New typedef. diff --git a/bfd/trad-core.c b/bfd/trad-core.c index 10ab252134..1b2477a4c5 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -71,7 +71,7 @@ struct trad_core_struct /* Handle 4.2-style (and perhaps also sysV-style) core dump file. */ -static const bfd_target * +static bfd_cleanup trad_unix_core_file_p (bfd *abfd) { int val; @@ -220,7 +220,7 @@ trad_unix_core_file_p (bfd *abfd) core_datasec (abfd)->alignment_power = 2; core_regsec (abfd)->alignment_power = 2; - return abfd->xvec; + return _bfd_no_cleanup; fail: bfd_release (abfd, abfd->tdata.any);