mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 12:17:37 +02:00
Fixed an issue when reading a nop
git-svn-id: https://smali.googlecode.com/svn/trunk@152 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
@ -88,7 +88,7 @@ public class InstructionField implements Field<InstructionField> {
|
||||
switch (secondByte) {
|
||||
case 0x00:
|
||||
//nop
|
||||
instruction = Opcode.NOP.format.Factory.makeInstruction(dexFile, Opcode.NOP, new byte[]{0x00, 0x00});
|
||||
instruction = Opcode.NOP.format.Factory.makeInstruction(dexFile, Opcode.NOP, new byte[]{0x00});
|
||||
return;
|
||||
case 0x01:
|
||||
//packed switch
|
||||
|
Reference in New Issue
Block a user