mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 12:37: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) {
|
switch (secondByte) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
//nop
|
//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;
|
return;
|
||||||
case 0x01:
|
case 0x01:
|
||||||
//packed switch
|
//packed switch
|
||||||
|
Reference in New Issue
Block a user