diff options
author | Nick Clifton <nickc@redhat.com> | 2003-04-18 08:06:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-04-18 08:06:01 +0000 |
commit | 4081944fd18906dd26c21c8bac6aa4f6671bdabf (patch) | |
tree | f564216483db9a24e673e8f46155d4978c50eff7 /bfd | |
parent | e3ab4aba1ae60c655511f6785913a55ae5e84145 (diff) | |
download | gdb-4081944fd18906dd26c21c8bac6aa4f6671bdabf.zip gdb-4081944fd18906dd26c21c8bac6aa4f6671bdabf.tar.gz gdb-4081944fd18906dd26c21c8bac6aa4f6671bdabf.tar.bz2 |
Only check associated vector if the matching_vector has been created.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/format.c | 4 |
2 files changed, 8 insertions, 1 deletions
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 <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 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; |