mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 20:08:07 +00:00
clearer code
This commit is contained in:
@ -234,6 +234,7 @@ if [ "$ORIG_CPU_TARGET" = "" ]; then
|
|||||||
|
|
||||||
unset AFL_INST_RATIO
|
unset AFL_INST_RATIO
|
||||||
|
|
||||||
|
echo "[*] Comparing two afl-showmap -Q outputs..."
|
||||||
echo 0 | ./afl-showmap -m none -Q -q -o .test-instr0 ./test-instr || exit 1
|
echo 0 | ./afl-showmap -m none -Q -q -o .test-instr0 ./test-instr || exit 1
|
||||||
echo 1 | ./afl-showmap -m none -Q -q -o .test-instr1 ./test-instr || exit 1
|
echo 1 | ./afl-showmap -m none -Q -q -o .test-instr1 ./test-instr || exit 1
|
||||||
|
|
||||||
|
@ -222,10 +222,12 @@ char **get_qemu_argv(u8 *own_loc, u8 **target_path_p, int argc, char **argv) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else
|
} else {
|
||||||
|
|
||||||
ck_free(own_copy);
|
ck_free(own_copy);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (!access(BIN_PATH "/afl-qemu-trace", X_OK)) {
|
if (!access(BIN_PATH "/afl-qemu-trace", X_OK)) {
|
||||||
|
|
||||||
if (cp) ck_free(cp);
|
if (cp) ck_free(cp);
|
||||||
@ -389,16 +391,19 @@ u8 *find_binary(u8 *fname) {
|
|||||||
memcpy(cur_elem, env_path, delim - env_path);
|
memcpy(cur_elem, env_path, delim - env_path);
|
||||||
delim++;
|
delim++;
|
||||||
|
|
||||||
} else
|
} else {
|
||||||
|
|
||||||
cur_elem = ck_strdup(env_path);
|
cur_elem = ck_strdup(env_path);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
env_path = delim;
|
env_path = delim;
|
||||||
|
|
||||||
if (cur_elem[0])
|
if (cur_elem[0]) {
|
||||||
target_path = alloc_printf("%s/%s", cur_elem, fname);
|
target_path = alloc_printf("%s/%s", cur_elem, fname);
|
||||||
else
|
} else {
|
||||||
target_path = ck_strdup(fname);
|
target_path = ck_strdup(fname);
|
||||||
|
}
|
||||||
|
|
||||||
ck_free(cur_elem);
|
ck_free(cur_elem);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user