Only check associated vector if the matching_vector has been created.
authorNick Clifton <nickc@redhat.com>
Fri, 18 Apr 2003 08:06:01 +0000 (08:06 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 18 Apr 2003 08:06:01 +0000 (08:06 +0000)
bfd/ChangeLog
bfd/format.c

index 1650199..0004267 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-18  Nick Clifton  <nickc@redhat.com>
+
+       * format.c (bfd_check_format_matches): Only check associated
+       vector if the matching_vector has been created.
+
 2003-04-15  Alexandre Oliva  <aoliva@redhat.com>
 
        * dwarf2.c (_bfd_dwarf2_find_nearest_line): Fix typo in
index 655ccd9..6415b8d 100644 (file)
@@ -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;