* coffcode.h (coff_rtype_to_howto): Initialise genrel.howto.
authorNick Clifton <nickc@redhat.com>
Thu, 19 Apr 2007 13:36:41 +0000 (13:36 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 19 Apr 2007 13:36:41 +0000 (13:36 +0000)
bfd/ChangeLog
bfd/coffcode.h

index 29ce21b..8d8645e 100644 (file)
@@ -1,3 +1,7 @@
+2007-04-19  Nick Clifton  <nickc@redhat.com>
+
+       * coffcode.h (coff_rtype_to_howto): Initialise genrel.howto.
+
 2007-04-19  Alan Modra  <amodra@bigpond.net.au>
 
        * bfd.c (bfd_demangle): New function.
index d86247e..98d1c08 100644 (file)
@@ -4950,6 +4950,7 @@ coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
 {
   arelent genrel;
 
+  genrel.howto = NULL;
   RTYPE2HOWTO (&genrel, rel);
   return genrel.howto;
 }