From: Nick Clifton Date: Fri, 18 Apr 2003 08:06:01 +0000 (+0000) Subject: Only check associated vector if the matching_vector has been created. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4081944fd18906dd26c21c8bac6aa4f6671bdabf;p=binutils-gdb.git Only check associated vector if the matching_vector has been created. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1650199eb43..00042678430 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-04-18 Nick Clifton + + * format.c (bfd_check_format_matches): Only check associated + vector if the matching_vector has been created. + 2003-04-15 Alexandre Oliva * dwarf2.c (_bfd_dwarf2_find_nearest_line): Fix typo in diff --git a/bfd/format.c b/bfd/format.c index 655ccd9f08f..6415b8d57bc 100644 --- a/bfd/format.c +++ b/bfd/format.c @@ -305,7 +305,9 @@ bfd_check_format_matches (abfd, format, matching) } } - if (match_count > 1 && bfd_associated_vector != NULL) + if (match_count > 1 + && bfd_associated_vector != NULL + && matching) { const bfd_target * const *assoc = bfd_associated_vector;