PR binutils/13278

* archive.c (bfd_generic_archive_p): Only check first element
	when target_defaulted.
	(_bfd_construct_extended_name_table): Use ar_maxnamelen.
	(_bfd_archive_bsd44_construct_extended_name_table): Likewise.
This commit is contained in:
Alan Modra 2011-10-11 06:44:13 +00:00
parent 98c53ba306
commit b228303dd1
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2011-10-11 Alan Modra <amodra@gmail.com>
PR binutils/13278
* archive.c (bfd_generic_archive_p): Only check first element
when target_defaulted.
(_bfd_construct_extended_name_table): Use ar_maxnamelen.
(_bfd_archive_bsd44_construct_extended_name_table): Likewise.
2011-10-11 Alan Modra <amodra@gmail.com>
PR binutils/13257

View File

@ -793,7 +793,7 @@ bfd_generic_archive_p (bfd *abfd)
return NULL;
}
if (bfd_has_map (abfd))
if (abfd->target_defaulted && bfd_has_map (abfd))
{
bfd *first;
@ -1512,7 +1512,7 @@ _bfd_construct_extended_name_table (bfd *abfd,
char **tabloc,
bfd_size_type *tablen)
{
unsigned int maxname = abfd->xvec->ar_max_namelen;
unsigned int maxname = ar_maxnamelen (abfd);
bfd_size_type total_namelen = 0;
bfd *current;
char *strptr;
@ -1707,7 +1707,7 @@ _bfd_archive_bsd44_construct_extended_name_table (bfd *abfd,
bfd_size_type *tablen,
const char **name)
{
unsigned int maxname = abfd->xvec->ar_max_namelen;
unsigned int maxname = ar_maxnamelen (abfd);
bfd *current;
*tablen = 0;