File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -311,22 +311,17 @@ void setup_post(afl_state_t *afl) {
311
311
mutator -> afl_custom_init = dlsym (dh , "afl_postprocess_init" );
312
312
if (!mutator -> afl_custom_init ) {
313
313
314
- FATAL ( "Symbol 'afl_postprocess_init' not found." );
314
+ WARNF ( "optional symbol 'afl_postprocess_init' not found." );
315
315
316
316
}
317
317
318
318
mutator -> afl_custom_deinit = dlsym (dh , "afl_postprocess_deinit" );
319
319
if (!mutator -> afl_custom_post_process ) {
320
320
321
- FATAL ( "Symbol 'afl_postprocess_deinit' not found." );
321
+ WARNF ( "optional symbol 'afl_postprocess_deinit' not found." );
322
322
323
323
}
324
324
325
- /* Do a quick test. It's better to segfault now than later =) */
326
-
327
- mutator -> data = mutator -> afl_custom_init (afl , rand_below (afl , 0xFFFFFFFF ));
328
- if (!mutator -> data ) { FATAL ("Could not initialize post handler." ); }
329
-
330
325
afl -> post_library_mutator = mutator ;
331
326
332
327
OKF ("Postprocessor installed successfully." );
You can’t perform that action at this time.
0 commit comments