summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-04-18 08:06:01 +0000
committerNick Clifton <nickc@redhat.com>2003-04-18 08:06:01 +0000
commit32c244d043cc58f53f45f8ec2313c4fc398a2766 (patch)
tree92393f8eae6ab9d8b52166c8a710fe2fd47b0d3b
parent1e9d54384f1551b77f083987d5c390e09343ebe0 (diff)
downloadbinutils-redhat-32c244d043cc58f53f45f8ec2313c4fc398a2766.tar.gz
Only check associated vector if the matching_vector has been created.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/format.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 1650199eb4..0004267843 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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
diff --git a/bfd/format.c b/bfd/format.c
index 655ccd9f08..6415b8d57b 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;