diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-13 22:43:56 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-13 22:43:56 +0100 |
commit | 9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2 (patch) | |
tree | 30deaa24dbcc759bf03df3b1043ef1ca69f89089 /src/afl-showmap.c | |
parent | 6ce9230ed66dbd091001436cdab2fc1718e8e61e (diff) | |
download | afl++-9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2.tar.gz |
added AFL_IGNORE_UNKNOWN_ENVS
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 0d2c5ceb..b40527d3 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -1168,8 +1168,9 @@ int main(int argc, char **argv_orig, char **envp) { } - stdin_file = at_file ? strdup(at_file) : (char *) - alloc_printf("%s/.afl-showmap-temp-%u", use_dir, (u32)getpid()); + stdin_file = at_file ? strdup(at_file) + : (char *)alloc_printf("%s/.afl-showmap-temp-%u", + use_dir, (u32)getpid()); unlink(stdin_file); atexit(at_exit_handler); fsrv->out_file = stdin_file; |