about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHAPPY <pcy190@126.com>2020-07-26 20:10:24 +0800
committerGitHub <noreply@github.com>2020-07-26 14:10:24 +0200
commit7e4703c3282af86641d59a196fccb06df4ab6316 (patch)
treeae08fa1d258dabe612e62cbb36e5d659de9b7002 /src
parenta879f721313a35274ce2d65f9aeed344027a208e (diff)
downloadafl++-7e4703c3282af86641d59a196fccb06df4ab6316.tar.gz
Fix typo for afl_custom_deinit (#470)
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-mutators.c2
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");