From: Cary Coutant Date: Thu, 20 Oct 2011 01:11:34 +0000 (+0000) Subject: * dwarf2read.c (create_debug_types_hash_table): Fix size of X-Git-Tag: sid-snapshot-20111101~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4743b73565bcc34d3a4e41529ac4e93517465b41;p=external%2Fbinutils.git * dwarf2read.c (create_debug_types_hash_table): Fix size of type_offset field. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0405847..215bbdd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-10-19 Cary Coutant + * dwarf2read.c (create_debug_types_hash_table): Fix size of + type_offset field. + +2011-10-19 Cary Coutant + * dwarf2read.c (peek_abbrev_code): New function. (dw2_get_file_names): Check for dummy compilation units. (create_debug_types_hash_table): Likewise. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index a99a690..5f81da6 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -3214,7 +3214,7 @@ create_debug_types_hash_table (struct objfile *objfile) signature = bfd_get_64 (objfile->obfd, ptr); ptr += 8; type_offset = read_offset_1 (objfile->obfd, ptr, offset_size); - ptr += 1; + ptr += offset_size; /* Skip dummy type units. */ if (ptr >= end_ptr || peek_abbrev_code (objfile->obfd, ptr) == 0)