diff options
author | van Hauser <vh@thc.org> | 2020-05-03 14:19:03 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-03 14:19:03 +0200 |
commit | 5b1b986c89042e749990f6d14c596d6b4e8ec23a (patch) | |
tree | 27a874c310ee91ab983ccb40436fa6bfeb2983b9 /src | |
parent | 1c53bbea52cfecf6c886bb441f1c99c1ae28b0e6 (diff) | |
download | afl++-5b1b986c89042e749990f6d14c596d6b4e8ec23a.tar.gz |
fix for afl-tmin -f
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-tmin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index d6fbd493..98568473 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -839,7 +839,7 @@ int main(int argc, char **argv_orig, char **envp) { if (out_file) { FATAL("Multiple -f options not supported"); } fsrv->use_stdin = 0; - out_file = optarg; + out_file = ck_strdup(optarg); break; case 'e': |