diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-02 16:19:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-02 16:19:54 +0000 |
commit | 21da9f89f2648f919c97277358cd4078b81047ae (patch) | |
tree | 556171b32c2b54cfa019dc8934b1dd56328556fe /bfd | |
parent | 95f7d9f7b7f3def3c1f96cfc6077668d3d8bb5b4 (diff) | |
download | gdb-21da9f89f2648f919c97277358cd4078b81047ae.zip gdb-21da9f89f2648f919c97277358cd4078b81047ae.tar.gz gdb-21da9f89f2648f919c97277358cd4078b81047ae.tar.bz2 |
Initialize subspace_sections.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/som.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f521ff7..ce54d18 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2001-11-02 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * som.c (setup_sections): Initialize subspace_sections. + 2001-11-02 H.J. Lu (hjl@gnu.org) * coffgen.c (coff_object_p): Return 0 if the header is too big. @@ -1851,7 +1851,8 @@ setup_sections (abfd, file_hdr, current_offset) char *space_strings; unsigned int space_index, i; unsigned int total_subspaces = 0; - asection **subspace_sections, *section; + asection **subspace_sections = NULL; + asection *section; bfd_size_type amt; /* First, read in space names. */ |