mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 03:48:08 +00:00
fixed 2 unimportant leaks
This commit is contained in:
@ -233,6 +233,7 @@ if [ "$ORIG_CPU_TARGET" = "" ]; then
|
||||
gcc test-instr.c -o test-instr || exit 1
|
||||
|
||||
unset AFL_INST_RATIO
|
||||
export ASAN_OPTIONS=detect_leaks=0
|
||||
|
||||
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
|
||||
|
@ -374,9 +374,13 @@ u8 *find_binary(u8 *fname) {
|
||||
target_path = ck_strdup(fname);
|
||||
|
||||
if (stat(target_path, &st) || !S_ISREG(st.st_mode) ||
|
||||
!(st.st_mode & 0111) || st.st_size < 4)
|
||||
!(st.st_mode & 0111) || st.st_size < 4) {
|
||||
|
||||
free(target_path);
|
||||
FATAL("Program '%s' not found or not executable", fname);
|
||||
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
while (env_path) {
|
||||
|
@ -877,6 +877,7 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
if (stdin_file) ck_free(stdin_file);
|
||||
|
||||
argv_cpy_free(argv);
|
||||
if (fsrv->qemu_mode) free(use_argv[2]);
|
||||
|
||||
exit(ret);
|
||||
|
||||
|
Reference in New Issue
Block a user