diff options
author | vanhauser-thc <vh@thc.org> | 2023-01-19 17:24:56 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-01-19 17:24:56 +0100 |
commit | 628b4b60021a0d62a2eccddca4fe321c9d57c663 (patch) | |
tree | 4794903a0c87baa2ec265266c6a9cab4136b8310 /custom_mutators/examples/post_library_gif.so.c | |
parent | 86d3c65559209ce12452e18daf96946222c19b46 (diff) | |
download | afl++-628b4b60021a0d62a2eccddca4fe321c9d57c663.tar.gz |
enhance examples
Diffstat (limited to 'custom_mutators/examples/post_library_gif.so.c')
-rw-r--r-- | custom_mutators/examples/post_library_gif.so.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custom_mutators/examples/post_library_gif.so.c b/custom_mutators/examples/post_library_gif.so.c index 9cd224f4..3cb018a6 100644 --- a/custom_mutators/examples/post_library_gif.so.c +++ b/custom_mutators/examples/post_library_gif.so.c @@ -129,8 +129,8 @@ size_t afl_custom_post_process(post_state_t *data, unsigned char *in_buf, /* Allocate memory for new buffer, reusing previous allocation if possible. Note we have to use afl-fuzz's own realloc! - Note that you should only do this if you need to grow the buffer, - otherwise work with in_buf, and assign it to *out_buf instead. */ + We use afl_realloc because it is effective. + You can also work within in_buf, and assign it to *out_buf. */ *out_buf = afl_realloc(out_buf, len); |