From 4081944fd18906dd26c21c8bac6aa4f6671bdabf Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 18 Apr 2003 08:06:01 +0000 Subject: [PATCH] Only check associated vector if the matching_vector has been created. --- bfd/ChangeLog | 5 +++++ bfd/format.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1650199..0004267 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 655ccd9..6415b8d 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; -- 2.7.4