bfd/
authorJan Beulich <jbeulich@novell.com>
Tue, 28 Jul 2009 06:22:01 +0000 (06:22 +0000)
committerJan Beulich <jbeulich@novell.com>
Tue, 28 Jul 2009 06:22:01 +0000 (06:22 +0000)
2009-07-28  Jan Beulich  <jbeulich@novell.com>

* archive.c (get_extended_arelt_filename): Remove redundant
range check on index.

bfd/ChangeLog
bfd/archive.c

index 54697c0..f3f4533 100644 (file)
@@ -1,3 +1,8 @@
+2009-07-28  Jan Beulich  <jbeulich@novell.com>
+
+       * archive.c (get_extended_arelt_filename): Remove redundant
+       range check on index.
+
 2009-07-27  Doug Kwan  <dougkwan@google.com>
 
        * elf32-arm.c (stub_hash_newfunc): Initialize field output_name.
index 5e0fd6b..1c28ee2 100644 (file)
@@ -373,7 +373,7 @@ get_extended_arelt_filename (bfd *arch, const char *name, file_ptr *originp)
     {
       file_ptr origin = strtol (endp + 1, NULL, 10);
 
-      if (errno != 0 || index >= bfd_ardata (arch)->extended_names_size)
+      if (errno != 0)
         {
           bfd_set_error (bfd_error_malformed_archive);
           return NULL;