From: Tristan Gingold Date: Thu, 18 Aug 2011 09:28:42 +0000 (+0000) Subject: 2011-08-18 Tristan Gingold X-Git-Tag: binutils-2_22-branchpoint~235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d4b600942e0a979b214c13bd560c5e88607b7e5;p=external%2Fbinutils.git 2011-08-18 Tristan Gingold * mach-o.c (bfd_mach_o_read_segment): Initialize list. --- 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 + + * mach-o.c (bfd_mach_o_read_segment): Initialize list. + 2011-08-17 Tristan Gingold * 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++) {