From cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Tue, 10 Mar 2020 22:04:05 +0100 Subject: unified pointer placement --- examples/post_library/post_library.so.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/post_library/post_library.so.c') diff --git a/examples/post_library/post_library.so.c b/examples/post_library/post_library.so.c index 487b9a6d..a38652ce 100644 --- a/examples/post_library/post_library.so.c +++ b/examples/post_library/post_library.so.c @@ -76,11 +76,11 @@ /* The actual postprocessor routine called by afl-fuzz: */ -const unsigned char* afl_postprocess(const unsigned char* in_buf, - unsigned int* len) { +const unsigned char *afl_postprocess(const unsigned char *in_buf, + unsigned int *len) { - static unsigned char* saved_buf; - unsigned char* new_buf; + static unsigned char *saved_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. */ -- cgit 1.4.1