diff options
author | Alan Modra <amodra@gmail.com> | 2005-02-17 13:06:14 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-02-17 13:06:14 +0000 |
commit | 20c2cbe38dd5b06ed38d9df2d112591a35657af3 (patch) | |
tree | 572714afb23f86828a884fa775e7cef3b0a3d204 /ld/ldexp.c | |
parent | 0af6db78f3e1c1d36a2160cbfc35ccb16cb4ce00 (diff) | |
download | binutils-20c2cbe38dd5b06ed38d9df2d112591a35657af3.zip binutils-20c2cbe38dd5b06ed38d9df2d112591a35657af3.tar.gz binutils-20c2cbe38dd5b06ed38d9df2d112591a35657af3.tar.bz2 |
* ldexp.c (new_abs): Init new.str.
Diffstat (limited to 'ld/ldexp.c')
-rw-r--r-- | ld/ldexp.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 <sac@cygnus.com>. @@ -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; } |