mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-22 09:47:34 +01:00
fix: properly parse localeNumberingSystem (#3133)
This commit is contained in:
parent
bdbe1384bf
commit
c46a6a13f9
@ -500,13 +500,14 @@ public class ARSCDecoder {
|
||||
if (size >= 52) {
|
||||
screenLayout2 = mIn.readByte();
|
||||
colorMode = mIn.readByte();
|
||||
mIn.skipBytes(2); // reserved padding
|
||||
mIn.skipBytes(2); // screenConfigPad2
|
||||
read = 52;
|
||||
}
|
||||
|
||||
if (size >= 56) {
|
||||
mIn.skipBytes(4);
|
||||
read = 56;
|
||||
if (size > 52) {
|
||||
int length = size - read;
|
||||
mIn.skipBytes(length); // localeNumberingSystem
|
||||
read += length;
|
||||
}
|
||||
|
||||
int exceedingSize = size - KNOWN_CONFIG_BYTES;
|
||||
@ -641,7 +642,7 @@ public class ARSCDecoder {
|
||||
private final static short ENTRY_FLAG_PUBLIC = 0x0002;
|
||||
private final static short ENTRY_FLAG_WEAK = 0x0004;
|
||||
|
||||
private static final int KNOWN_CONFIG_BYTES = 56;
|
||||
private static final int KNOWN_CONFIG_BYTES = 64;
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(ARSCDecoder.class.getName());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user