diff --git a/ld/ChangeLog b/ld/ChangeLog index 3b2159b35b..468c711a90 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2005-02-17 Alan Modra + + * ldexp.c (new_abs): Init new.str. + 2005-02-15 Mark Mitchell * configure.in (AC_CHECK_FUNCS): Add glob. diff --git a/ld/ldexp.c b/ld/ldexp.c index 8336f5279a..3335e37dc3 100644 --- a/ld/ldexp.c +++ b/ld/ldexp.c @@ -1,6 +1,6 @@ /* This module handles expression trees. Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004 + 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Written by Steve Chamberlain of Cygnus Support . @@ -144,6 +144,7 @@ new_abs (bfd_vma value) new.valid_p = TRUE; new.section = abs_output_section; new.value = value; + new.str = NULL; return new; }