From: Andrew Haley Date: Mon, 18 Oct 1999 12:45:21 +0000 (+0000) Subject: 1999-10-15 Andrew Haley X-Git-Tag: gdb-1999-10-18~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a67a87777490844b90870b030a0669e752427ad9;p=external%2Fbinutils.git 1999-10-15 Andrew Haley * dwarf1.c (parse_die): Fail to parse a die if its length is zero. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 134f41d..640ec8d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +1999-10-15 Andrew Haley + + * dwarf1.c (parse_die): Fail to parse a die if its length is zero. + Sun Oct 17 17:19:00 1999 Jeffrey A Law (law@cygnus.com) * libhppa.h (bfd_hppa_insn2fmt): Change to return an int. diff --git a/bfd/dwarf1.c b/bfd/dwarf1.c index 903bfc3..da184cc 100644 --- a/bfd/dwarf1.c +++ b/bfd/dwarf1.c @@ -186,6 +186,8 @@ parse_die (abfd, aDieInfo, aDiePtr) /* First comes the length. */ aDieInfo->length = bfd_get_32 (abfd, xptr); xptr += 4; + if (aDieInfo->length == 0) + return false; if (aDieInfo->length < 6) { /* Just padding bytes. */