Skip to content

Commit

Permalink
Fix typo in ClassDef reading
Browse files Browse the repository at this point in the history
  • Loading branch information
vova7878 committed Aug 1, 2024
1 parent 2884155 commit 24129b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/v7878/dex/ClassDef.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ static ClassDef[] readArray(RandomInput in, ReadContext context, int[] ids) {
} else {
RandomInput tmp = in.duplicate(in.position());
tmp.addPosition((long) id * ClassDef.SIZE);
out[i] = ClassDef.read(in, context);
out[i] = ClassDef.read(tmp, context);
}
}
return out;
Expand Down

0 comments on commit 24129b7

Please sign in to comment.