diff options
| -rw-r--r-- | tools/dexfuzz/src/dexfuzz/DexFuzz.java | 4 | ||||
| -rw-r--r-- | tools/dexfuzz/src/dexfuzz/program/mutators/InvokeChanger.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/dexfuzz/src/dexfuzz/DexFuzz.java b/tools/dexfuzz/src/dexfuzz/DexFuzz.java index 1e37def905..feb5a132ca 100644 --- a/tools/dexfuzz/src/dexfuzz/DexFuzz.java +++ b/tools/dexfuzz/src/dexfuzz/DexFuzz.java @@ -33,9 +33,9 @@ import dexfuzz.listeners.UpdatingConsoleListener; * Entrypoint class for dexfuzz. */ public class DexFuzz { - // Last version update 1.8: Added a new mutation called NewInstanceChanger. + // Last version update 1.9: fixed a bug in InvokeChanger. private static int majorVersion = 1; - private static int minorVersion = 8; + private static int minorVersion = 9; private static int seedChangeVersion = 0; /** diff --git a/tools/dexfuzz/src/dexfuzz/program/mutators/InvokeChanger.java b/tools/dexfuzz/src/dexfuzz/program/mutators/InvokeChanger.java index 8750fc670c..f0ed83a88e 100644 --- a/tools/dexfuzz/src/dexfuzz/program/mutators/InvokeChanger.java +++ b/tools/dexfuzz/src/dexfuzz/program/mutators/InvokeChanger.java @@ -167,7 +167,7 @@ public class InvokeChanger extends CodeMutator { } private boolean isRangeInvokeInst(Opcode opcode){ - return Opcode.isBetween(opcode, Opcode.INVOKE_VIRTUAL, Opcode.INVOKE_INTERFACE); + return Opcode.isBetween(opcode, Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE); } |