diff options
author | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
commit | 684f4dd1c44053517c6685a8a3137691535ecd84 (patch) | |
tree | 67b729127193050c7812bf2159ffac047b45280d /examples | |
parent | d8d89507b5cdbd066c149fd3c86a91b3948521aa (diff) | |
download | afl++-684f4dd1c44053517c6685a8a3137691535ecd84.tar.gz |
honor afl_quiet on env var checks + code-format
Diffstat (limited to 'examples')
-rw-r--r-- | examples/post_library/post_library.so.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/post_library/post_library.so.c b/examples/post_library/post_library.so.c index a38652ce..5d2685cd 100644 --- a/examples/post_library/post_library.so.c +++ b/examples/post_library/post_library.so.c @@ -77,10 +77,10 @@ /* The actual postprocessor routine called by afl-fuzz: */ const unsigned char *afl_postprocess(const unsigned char *in_buf, - unsigned int *len) { + unsigned int * len) { static unsigned char *saved_buf; - unsigned char *new_buf; + unsigned char * new_buf; /* Skip execution altogether for buffers shorter than 6 bytes (just to show how it's done). We can trust *len to be sane. */ |