diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-25 11:31:01 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-25 11:31:01 +0100 |
commit | f6466214c61e751455097378f97ce60b1970e9d3 (patch) | |
tree | ad5ae20fd9565d981cee4fb9e12f9c3673124e50 /src/afl-fuzz-run.c | |
parent | 9c4d32b5b8d20b86afb2c59045baa63dd5a23031 (diff) | |
download | afl++-f6466214c61e751455097378f97ce60b1970e9d3.tar.gz |
code format
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r-- | src/afl-fuzz-run.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index 2b207a9e..e8ef3049 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -217,8 +217,8 @@ void write_to_testcase(afl_state_t *afl, void *mem, u32 len) { if (afl->mutator && afl->mutator->afl_custom_pre_save) { u8 * new_data; - size_t new_size = - afl->mutator->afl_custom_pre_save(afl->mutator->data, mem, len, &new_data); + size_t new_size = afl->mutator->afl_custom_pre_save(afl->mutator->data, mem, + len, &new_data); ck_write(fd, new_data, new_size, afl->fsrv.out_file); free(new_data); @@ -627,8 +627,8 @@ u8 trim_case(afl_state_t *afl, struct queue_entry *q, u8 *in_buf) { u32 remove_pos = remove_len; sprintf(afl->stage_name_buf, "trim %s/%s", - u_stringify_int(val_bufs[0], remove_len), - u_stringify_int(val_bufs[1], remove_len)); + u_stringify_int(val_bufs[0], remove_len), + u_stringify_int(val_bufs[1], remove_len)); afl->stage_cur = 0; afl->stage_max = q->len / remove_len; |