aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-08-18 09:28:42 +0000
committerTristan Gingold <gingold@adacore.com>2011-08-18 09:28:42 +0000
commit9d4b600942e0a979b214c13bd560c5e88607b7e5 (patch)
tree33ca9aaad8b5ab51c75c7bbcdb337875645f2e9c /bfd
parent0a35427e679e271627ead9d6f14504d04e9ee71c (diff)
downloadbinutils-9d4b600942e0a979b214c13bd560c5e88607b7e5.zip
binutils-9d4b600942e0a979b214c13bd560c5e88607b7e5.tar.gz
binutils-9d4b600942e0a979b214c13bd560c5e88607b7e5.tar.bz2
2011-08-18 Tristan Gingold <gingold@adacore.com>
* mach-o.c (bfd_mach_o_read_segment): Initialize list.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/mach-o.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 54ac6f5..f883765 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-18 Tristan Gingold <gingold@adacore.com>
+
+ * mach-o.c (bfd_mach_o_read_segment): Initialize list.
+
2011-08-17 Tristan Gingold <gingold@adacore.com>
* mach-o.c (bfd_mach_o_write_section_32): Fix typo.
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index 6b2d3d4..efc58f5 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -2593,6 +2593,8 @@ bfd_mach_o_read_segment (bfd *abfd,
seg->nsects = bfd_h_get_32 (abfd, raw.nsects);
seg->flags = bfd_h_get_32 (abfd, raw.flags);
}
+ seg->sect_head = NULL;
+ seg->sect_tail = NULL;
for (i = 0; i < seg->nsects; i++)
{