From: Nick Clifton Date: Thu, 19 Apr 2007 13:36:41 +0000 (+0000) Subject: * coffcode.h (coff_rtype_to_howto): Initialise genrel.howto. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=964597d07bbacb56b0c64406c47e775c6c8009ea;p=binutils-gdb.git * coffcode.h (coff_rtype_to_howto): Initialise genrel.howto. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 29ce21bb670..8d8645ec3ab 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2007-04-19 Nick Clifton + + * coffcode.h (coff_rtype_to_howto): Initialise genrel.howto. + 2007-04-19 Alan Modra * bfd.c (bfd_demangle): New function. diff --git a/bfd/coffcode.h b/bfd/coffcode.h index d86247e246a..98d1c0886bf 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -4950,6 +4950,7 @@ coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED, { arelent genrel; + genrel.howto = NULL; RTYPE2HOWTO (&genrel, rel); return genrel.howto; }