about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-07-17 08:41:26 +0200
committerGitHub <noreply@github.com>2020-07-17 08:41:26 +0200
commit0da0b5cba05d1b49b7ca10987d11a74ab54892e0 (patch)
tree9328c8a2c7f5e1e46261c596440220253ce1a7da
parent67d58e2437f268a692f4570c70e58953b43d3042 (diff)
parent67d7c364f6705d41f3e0dcd89fffcae5ddc79326 (diff)
downloadafl++-0da0b5cba05d1b49b7ca10987d11a74ab54892e0.tar.gz
Merge pull request #456 from h1994st/dev
Fix typo
-rw-r--r--docs/custom_mutators.md2
-rw-r--r--examples/afl_frida/README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index 464acbee..a22c809b 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -36,7 +36,7 @@ size_t afl_custom_fuzz(void *data, uint8_t *buf, size_t buf_size, u8 **out_buf,
 size_t afl_custom_post_process(void *data, uint8_t *buf, size_t buf_size, uint8_t **out_buf);
 int32_t afl_custom_init_trim(void *data, uint8_t *buf, size_t buf_size);
 size_t afl_custom_trim(void *data, uint8_t **out_buf);
-int32_t afl_custom_post_trim(void *data, int success) {
+int32_t afl_custom_post_trim(void *data, int success);
 size_t afl_custom_havoc_mutation(void *data, u8 *buf, size_t buf_size, u8 **out_buf, size_t max_size);
 uint8_t afl_custom_havoc_mutation_probability(void *data);
 uint8_t afl_custom_queue_get(void *data, const uint8_t *filename);
diff --git a/examples/afl_frida/README.md b/examples/afl_frida/README.md
index 1ee19a68..7743479b 100644
--- a/examples/afl_frida/README.md
+++ b/examples/afl_frida/README.md
@@ -31,4 +31,4 @@ However the stability is low. Reason is currently unknown.
 
 # Background
 
-This code ist copied for a larger part from https://github.com/meme/hotwax 
+This code is copied for a larger part from https://github.com/meme/hotwax