commit | 4d7a18922ef2fcacae97676375e9c877278e6eaf | [log] [tgz] |
---|---|---|
author | buzbee <buzbee@google.com> | Wed Oct 03 11:03:37 2012 -0700 |
committer | buzbee <buzbee@google.com> | Wed Oct 03 11:03:37 2012 -0700 |
tree | fc6822a09be7cae5d83e6d34d44f772f08d98efc | |
parent | 3e96a16c27c986275f60afe682d0b2a3064f45c9 [diff] [blame] |
Fix oatdump off-by-one The dump of the pc <-> dex mapping tables was broken by the recent mapping table restructuring change. Fixed now. Change-Id: I36c869e4a2853e18e021268b5b4eb49a4b76c970
diff --git a/src/oatdump.cc b/src/oatdump.cc index c35d233..ab7f277 100644 --- a/src/oatdump.cc +++ b/src/oatdump.cc
@@ -421,6 +421,7 @@ return; } + ++raw_table; uint32_t length = *raw_table; ++raw_table; uint32_t pc_to_dex_entries = *raw_table;