mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
unused var
This commit is contained in:
@ -610,7 +610,6 @@ typedef struct afl_state {
|
|||||||
|
|
||||||
/* this is a fixed buffer of size map_size that can be used by any function if they do not call another function */
|
/* this is a fixed buffer of size map_size that can be used by any function if they do not call another function */
|
||||||
u8 * map_tmp_buf;
|
u8 * map_tmp_buf;
|
||||||
size_t map_tmp_len;
|
|
||||||
|
|
||||||
} afl_state_t;
|
} afl_state_t;
|
||||||
|
|
||||||
|
@ -108,7 +108,6 @@ void afl_state_init(afl_state_t *afl, uint32_t map_size) {
|
|||||||
afl->clean_trace_custom = ck_alloc(map_size);
|
afl->clean_trace_custom = ck_alloc(map_size);
|
||||||
afl->first_trace = ck_alloc(map_size);
|
afl->first_trace = ck_alloc(map_size);
|
||||||
afl->map_tmp_buf = ck_alloc(map_size);
|
afl->map_tmp_buf = ck_alloc(map_size);
|
||||||
afl->map_tmp_len = map_size;
|
|
||||||
|
|
||||||
afl->fsrv.use_stdin = 1;
|
afl->fsrv.use_stdin = 1;
|
||||||
afl->fsrv.map_size = map_size;
|
afl->fsrv.map_size = map_size;
|
||||||
|
Reference in New Issue
Block a user