Merge pull request #564 from wakolzin/dev

Fix potential endless loop in custom_mutator_stage
This commit is contained in:
van Hauser
2020-09-25 11:39:25 +02:00
committed by GitHub
4 changed files with 53 additions and 29 deletions

View File

@ -657,6 +657,9 @@ typedef struct afl_state {
* they do not call another function */
u8 *map_tmp_buf;
/* queue entries ready for splicing count (len > 1) */
u32 ready_for_splicing_count;
} afl_state_t;
struct custom_mutator {