We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
annotation_set_ref_item format says
offset from the start of the file to the referenced annotation set or 0 if there are no annotations for this element.
https://github.com/sailro/Dexer/blob/master/Dexer/IO/DexReader.cs#L285-L286
var size = reader.ReadUInt32(); for (uint i = 0; i < size; i++) { var offset = reader.ReadUInt32(); result.Add(ReadAnnotationSet(reader, offset)); }
there should be
for (uint i = 0; i < size; i++) { var offset = reader.ReadUInt(); if (offset == 0) result.Add(new List<Annotation>(0)); else result.Add(ReadAnnotationSet(offset)); }
The text was updated successfully, but these errors were encountered:
307c511
Good catch! Thank you
Sorry, something went wrong.
sailro
No branches or pull requests
annotation_set_ref_item format says
https://github.com/sailro/Dexer/blob/master/Dexer/IO/DexReader.cs#L285-L286
there should be
The text was updated successfully, but these errors were encountered: