From a67a87777490844b90870b030a0669e752427ad9 Mon Sep 17 00:00:00 2001 From: Andrew Haley Date: Mon, 18 Oct 1999 12:45:21 +0000 Subject: 1999-10-15 Andrew Haley * dwarf1.c (parse_die): Fail to parse a die if its length is zero. --- bfd/dwarf1.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bfd/dwarf1.c') 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. */ -- cgit v1.1