* simple.c (bfd_simple_get_relocated_section_contents): Set
authorAlan Modra <amodra@gmail.com>
Sat, 16 Feb 2008 23:00:12 +0000 (23:00 +0000)
committerAlan Modra <amodra@gmail.com>
Sat, 16 Feb 2008 23:00:12 +0000 (23:00 +0000)
link_info.output_bfd.

bfd/ChangeLog
bfd/simple.c

index bb2ace66eb556c52d15054717f6040fd8b98abdd..a9ffccf549f37e8467587810e46de7e8c85b918e 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-17  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * simple.c (bfd_simple_get_relocated_section_contents): Set
+       link_info.output_bfd.
+
 2008-02-16  Nathan Sidwell  <nathan@codesourcery.com>
 
        * dwarf2.c (find_line): Don't trust debug information after an
index 1b92a05791c0741e30106417b5f753a1c1155464..dd69f9a55964670b8a62e2487c27676f871c9679 100644 (file)
@@ -1,5 +1,5 @@
 /* simple.c -- BFD simple client routines
-   Copyright 2002, 2003, 2004, 2005, 2007
+   Copyright 2002, 2003, 2004, 2005, 2007, 2008
    Free Software Foundation, Inc.
    Contributed by MontaVista Software, Inc.
 
@@ -186,6 +186,7 @@ bfd_simple_get_relocated_section_contents (bfd *abfd,
 
   /* Fill in the bare minimum number of fields for our purposes.  */
   memset (&link_info, 0, sizeof (link_info));
+  link_info.output_bfd = abfd;
   link_info.input_bfds = abfd;
   link_info.input_bfds_tail = &abfd->link_next;
 
This page took 0.02989 seconds and 4 git commands to generate.