From: Roland McGrath Date: Tue, 22 Jun 2010 20:05:23 +0000 (-0700) Subject: readelf: Fix braino in DW_LNS_set_isa parsing. X-Git-Tag: elfutils-0.148~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa79990a9c47703f159f11fd4d836b1bce1e4473;p=platform%2Fupstream%2Felfutils.git readelf: Fix braino in DW_LNS_set_isa parsing. --- diff --git a/src/ChangeLog b/src/ChangeLog index e7cbffa..6b2188b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-06-22 Roland McGrath + + * readelf.c (print_debug_line_section): Fix braino in DW_LNS_set_isa. + 2010-06-21 Roland McGrath * readelf.c (dwarf_tag_string): Handle new v4 tags. diff --git a/src/readelf.c b/src/readelf.c index 08b85ab..dbc8499 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -6029,6 +6029,7 @@ advance address by fixed value %u to %s\n"), if (unlikely (standard_opcode_lengths[opcode] != 1)) goto invalid_unit; + get_uleb128 (u128, linep); printf (gettext (" set isa to %u\n"), u128); break; }