diff options
author | Ian Lance Taylor <ian@airs.com> | 2000-03-06 18:08:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2000-03-06 18:08:38 +0000 |
commit | a9998805177cee0fb010d8024dbeeb5eac96367b (patch) | |
tree | 2a07d8115f555fd4d086c56e7d96f678e1f2b57a /ld/ldfile.c | |
parent | ef7904ee590b63740ce8159d01ea7e7e6ad3a8d1 (diff) | |
download | gdb-a9998805177cee0fb010d8024dbeeb5eac96367b.zip gdb-a9998805177cee0fb010d8024dbeeb5eac96367b.tar.gz gdb-a9998805177cee0fb010d8024dbeeb5eac96367b.tar.bz2 |
* ldfile.c (ldfile_try_open_bfd): Don't crash if we see an empty
archive.
Diffstat (limited to 'ld/ldfile.c')
-rw-r--r-- | ld/ldfile.c | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/ld/ldfile.c b/ld/ldfile.c index 187770e..9613c07 100644 --- a/ld/ldfile.c +++ b/ld/ldfile.c @@ -1,4 +1,6 @@ -/* Copyright (C) 1991, 92, 93, 94, 95, 98, 99, 2000 Free Software Foundation, Inc. +/* Linker file opening and searching. + Copyright (C) 1991, 92, 93, 94, 95, 98, 99, 2000 + Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. @@ -129,15 +131,18 @@ ldfile_try_open_bfd (attempt, entry) else check = entry->the_bfd; - if (! bfd_check_format (check, bfd_object)) - return true; - if (bfd_arch_get_compatible (check, output_bfd) == NULL) + if (check != NULL) { - einfo (_("%P: skipping incompatible %s when searching for %s"), - attempt, entry->local_sym_name); - bfd_close (entry->the_bfd); - entry->the_bfd = NULL; - return false; + if (! bfd_check_format (check, bfd_object)) + return true; + if (bfd_arch_get_compatible (check, output_bfd) == NULL) + { + einfo (_("%P: skipping incompatible %s when searching for %s"), + attempt, entry->local_sym_name); + bfd_close (entry->the_bfd); + entry->the_bfd = NULL; + return false; + } } } |