diff options
author | vanhauser-thc <vh@thc.org> | 2021-05-10 13:46:31 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-05-10 13:46:31 +0200 |
commit | 50af4654e314df75ba8653340e5a58e9e42f1f19 (patch) | |
tree | 7d9242440506351325693d656097d9fd05ace952 /src/afl-fuzz-mutators.c | |
parent | 82d0e4f210ba6dd12eb4e09cbb144850660e050b (diff) | |
download | afl++-50af4654e314df75ba8653340e5a58e9e42f1f19.tar.gz |
code-format
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index 3bb37a89..e27d6fae 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -312,7 +312,7 @@ u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf, u32 trim_exec = 0; u32 orig_len = q->len; u32 out_len = 0; - u8* out_buf = NULL; + u8 *out_buf = NULL; u8 val_buf[STRINGIFY_VAL_SIZE_MAX]; @@ -475,8 +475,8 @@ u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf, close(fd); /* Update the queue's knowledge of length as soon as we write the file. - We do this here so that exit/error cases that *don't* update the file also - don't update q->len. */ + We do this here so that exit/error cases that *don't* update the file + also don't update q->len. */ q->len = out_len; memcpy(afl->fsrv.trace_bits, afl->clean_trace_custom, afl->fsrv.map_size); |