about summary refs log tree commit diff
path: root/src/afl-showmap.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-02-13 22:43:56 +0100
committervanhauser-thc <vh@thc.org>2021-02-13 22:43:56 +0100
commit9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2 (patch)
tree30deaa24dbcc759bf03df3b1043ef1ca69f89089 /src/afl-showmap.c
parent6ce9230ed66dbd091001436cdab2fc1718e8e61e (diff)
downloadafl++-9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2.tar.gz
added AFL_IGNORE_UNKNOWN_ENVS
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r--src/afl-showmap.c5
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;