diff options
author | HAPPY <pcy190@126.com> | 2020-07-26 20:10:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 14:10:24 +0200 |
commit | 7e4703c3282af86641d59a196fccb06df4ab6316 (patch) | |
tree | ae08fa1d258dabe612e62cbb36e5d659de9b7002 /src | |
parent | a879f721313a35274ce2d65f9aeed344027a208e (diff) | |
download | afl++-7e4703c3282af86641d59a196fccb06df4ab6316.tar.gz |
Fix typo for afl_custom_deinit (#470)
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-mutators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index 17a68ff8..ed777811 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -168,7 +168,7 @@ struct custom_mutator *load_custom_mutator(afl_state_t *afl, const char *fn) { /* "afl_custom_deinit", optional for backward compatibility */ mutator->afl_custom_deinit = dlsym(dh, "afl_custom_deinit"); - if (!mutator->afl_custom_deinit) FATAL("Symbol 'afl_custom_init' not found."); + if (!mutator->afl_custom_deinit) FATAL("Symbol 'afl_custom_deinit' not found."); /* "afl_custom_post_process", optional */ mutator->afl_custom_post_process = dlsym(dh, "afl_custom_post_process"); |