Skip to content

Commit

Permalink
keep at least a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
CKCat authored Mar 12, 2024
1 parent 84d4d89 commit 7de1d87
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ private void parseNameSpaceEnd() throws IOException {
die("NAMESPACE end is not 0x10 big");
}
int dataSize = is.readInt32();
if (dataSize != 0x18) {
LOG.warn("Invalid namespace end size");
}
int endLineNumber = is.readInt32();
int comment = is.readInt32();
int endPrefix = is.readInt32();
Expand Down

0 comments on commit 7de1d87

Please sign in to comment.