diff options
author | van Hauser <vh@thc.org> | 2020-08-11 03:40:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 03:40:12 +0200 |
commit | 67dac152269c48245dca88140b1238b36d5e0954 (patch) | |
tree | 81e8f262c1dc403e34c7b287ba68c81bb37cb4d0 /src/afl-fuzz-mutators.c | |
parent | 9cf8637fab8cf3fe8aba5660015bbe7177805807 (diff) | |
parent | 50e76fce123f01ec83024f3bbd3190f2e1a6d387 (diff) | |
download | afl++-67dac152269c48245dca88140b1238b36d5e0954.tar.gz |
Merge branch 'debug' into taint
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index b30106a0..0fa646f9 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -142,6 +142,7 @@ struct custom_mutator *load_custom_mutator(afl_state_t *afl, const char *fn) { struct custom_mutator *mutator = ck_alloc(sizeof(struct custom_mutator)); mutator->name = fn; + mutator->name_short = strrchr(fn, '/') + 1; ACTF("Loading custom mutator library from '%s'...", fn); dh = dlopen(fn, RTLD_NOW); |