mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 12:17:37 +02:00
Fix stupid infinite loop problem
This commit is contained in:
@ -68,7 +68,7 @@ public class HeaderItem extends Item<HeaderItem> {
|
||||
for (int i=0; i<MAGIC_VALUES.length; i++) {
|
||||
byte[] magic_value = MAGIC_VALUES[i];
|
||||
boolean matched = true;
|
||||
for (int j=0; j<8; i++) {
|
||||
for (int j=0; j<8; j++) {
|
||||
if (magic_value[j] != readMagic[j]) {
|
||||
matched = false;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user