Skip to content
Snippets Groups Projects
Commit 9478e782 authored by Zhaolin Deng's avatar Zhaolin Deng
Browse files

sasdads

parent b0937ffb
No related branches found
No related tags found
No related merge requests found
......@@ -413,12 +413,7 @@ public class Fuzzer {
public static String jmpOverflow(Random rg) {
String line = new String();
int val;
if(rg.nextBoolean()) {
val = -1*maxMemory;
} else {
val = maxMemory;
}
int val = rg.nextInt(10)+1;
line = line +"JMP "+val;
return line;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment