mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
Fix typo for afl_custom_deinit (#470)
This commit is contained in:
@ -168,7 +168,7 @@ struct custom_mutator *load_custom_mutator(afl_state_t *afl, const char *fn) {
|
|||||||
|
|
||||||
/* "afl_custom_deinit", optional for backward compatibility */
|
/* "afl_custom_deinit", optional for backward compatibility */
|
||||||
mutator->afl_custom_deinit = dlsym(dh, "afl_custom_deinit");
|
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 */
|
/* "afl_custom_post_process", optional */
|
||||||
mutator->afl_custom_post_process = dlsym(dh, "afl_custom_post_process");
|
mutator->afl_custom_post_process = dlsym(dh, "afl_custom_post_process");
|
||||||
|
Reference in New Issue
Block a user