diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-27 23:30:15 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-27 23:30:15 +0100 |
commit | e04f4b3f206c93d8c029d1ec2e9a7c08639a7acb (patch) | |
tree | 1af4449f1a7a891e4c0aafc487be7c4bc9de7b5c /examples/custom_mutators/example.c | |
parent | 5e389a0970736030d6db59d27593e3173df5e18c (diff) | |
download | afl++-e04f4b3f206c93d8c029d1ec2e9a7c08639a7acb.tar.gz |
code format
Diffstat (limited to 'examples/custom_mutators/example.c')
-rw-r--r-- | examples/custom_mutators/example.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/custom_mutators/example.c b/examples/custom_mutators/example.c index 8a45d87f..4b0a461b 100644 --- a/examples/custom_mutators/example.c +++ b/examples/custom_mutators/example.c @@ -149,6 +149,7 @@ size_t afl_custom_pre_save(my_mutator_t *data, uint8_t *buf, size_t buf_size, data->pre_save_size = buf_size + 5; } + *out_buf = data->pre_save_buf; memcpy(*out_buf + 5, buf, buf_size); |