Skip to content

Commit

Permalink
fix annotation read bug
Browse files Browse the repository at this point in the history
--HG--
branch : 0.0.9.x
  • Loading branch information
pxb1988 committed Nov 21, 2013
1 parent 1a6bfd9 commit a8d40e4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,9 @@ public final void setApiLevel(int apiLevel) {
int sizeJ = in.readUIntx();
for (int j = 0; j < sizeJ; j++) {
int field_annotation_offset = in.readUIntx();
if(field_annotation_offset == 0){
continue;
}
in.pushMove(field_annotation_offset);
try {
DexAnnotationAble dpav = dmv.visitParameterAnnotation(j);
Expand Down

0 comments on commit a8d40e4

Please sign in to comment.