about summary refs log tree commit diff
path: root/src/afl-fuzz-python.c
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2020-04-16 19:53:51 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2020-04-16 19:53:51 +0200
commit23ea7279159dce964c69b3dfa5e7e36f3d5a5085 (patch)
treec29eeca17acee61a862646149b8cd1d9a4cf97f3 /src/afl-fuzz-python.c
parentf157bca54858dce131e90f664da2505d43e0f65f (diff)
parent35937e62634f69b34c852abb0aaeca546a712f4f (diff)
downloadafl++-23ea7279159dce964c69b3dfa5e7e36f3d5a5085.tar.gz
Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev
Diffstat (limited to 'src/afl-fuzz-python.c')
-rw-r--r--src/afl-fuzz-python.c2
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;