PR binutils/14481

* aout-target.h (MY_close_and_cleanup): Make local function
	instead of alias of MY_bfd_free_cached_info.  Also call
	_bfd_generic_close_and_cleanup.
This commit is contained in:
Hans-Peter Nilsson 2012-11-07 05:51:37 +00:00
parent 9053b70efa
commit 75344f2a89
2 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2012-11-07 Hans-Peter Nilsson <hp@axis.com>
PR binutils/14481
* aout-target.h (MY_close_and_cleanup): Make local function
instead of alias of MY_bfd_free_cached_info. Also call
_bfd_generic_close_and_cleanup.
2012-11-06 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/14813

View File

@ -577,7 +577,18 @@ MY_bfd_final_link (bfd *abfd, struct bfd_link_info *info)
#endif
#ifndef MY_close_and_cleanup
#define MY_close_and_cleanup MY_bfd_free_cached_info
/* Handle closing of a BFD including the resource-releasing parts. */
static bfd_boolean
MY_close_and_cleanup (bfd *abfd)
{
if (!MY_bfd_free_cached_info (abfd))
return FALSE;
return _bfd_generic_close_and_cleanup (abfd);
}
#endif
#ifndef MY_get_dynamic_symtab_upper_bound