about summary refs log tree commit diff
path: root/include/afl-mutations.h
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-06-29 16:57:20 +0200
committervanhauser-thc <vh@thc.org>2023-06-29 16:57:20 +0200
commit3e1d7941077b1457f702988063d6b9fdd9b80740 (patch)
tree6bf544caf53f4ef7f7ca8ad02c2a412150758aa9 /include/afl-mutations.h
parent15fc47a62cd4fa47d6e2436a3830c656ffe64fc9 (diff)
downloadafl++-3e1d7941077b1457f702988063d6b9fdd9b80740.tar.gz
update mutation strategy
Diffstat (limited to 'include/afl-mutations.h')
-rw-r--r--include/afl-mutations.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/afl-mutations.h b/include/afl-mutations.h
index cc4840c8..0a9bbbf4 100644
--- a/include/afl-mutations.h
+++ b/include/afl-mutations.h
@@ -14,14 +14,14 @@
    Parameters:
      afl_state_t *afl - the *afl state pointer
      u8 *buf - the input buffer to mutate which will be mutated into.
-           NOTE: must be able to contain a size of at least max_len (see below)!
+         NOTE: must be able to contain a size of at least max_len!! (see below)
      u32 len - the length of the input
      u32 steps - how many mutations to perform on the input
      bool is_text - is the target expecting text inputs
      bool is_exploration - mutate for exploration mode (instead of exploitation)
      splice_buf - a buffer from another corpus item to splice with.
-                  If NULL then no splicing
-     splice_len - the length of the splice buffer. If 0 then no splicing
+                  If NULL then no splicing is done (obviously).
+     splice_len - the length of the splice buffer. If 0 then no splicing.
      u32 max_len - the maximum size the mutated buffer may grow to
 */