diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-16 15:38:43 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-16 15:38:43 +0200 |
commit | 8511638afb1c51de37383ba2d86ed0b2a4a09415 (patch) | |
tree | f412b6976421f9b37f4647e0ccc212099411e243 /src/afl-fuzz-python.c | |
parent | b10007a7b5bcc231c98f9150b073daf3f1b18c95 (diff) | |
download | afl++-8511638afb1c51de37383ba2d86ed0b2a4a09415.tar.gz |
hunting non-static functions
Diffstat (limited to 'src/afl-fuzz-python.c')
-rw-r--r-- | src/afl-fuzz-python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-python.c b/src/afl-fuzz-python.c index 12c3a09d..33f01797 100644 --- a/src/afl-fuzz-python.c +++ b/src/afl-fuzz-python.c @@ -41,7 +41,7 @@ it just fills in `&py_mutator->something_buf, &py_mutator->something_size`. */ (void **)&((py_mutator_t *)py_mutator)->name##_buf, \ &((py_mutator_t *)py_mutator)->name##_size -size_t fuzz_py(void *py_mutator, u8 *buf, size_t buf_size, u8 **out_buf, +static size_t fuzz_py(void *py_mutator, u8 *buf, size_t buf_size, u8 **out_buf, u8 *add_buf, size_t add_buf_size, size_t max_size) { size_t mutated_size; |