diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-28 13:06:05 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-03-28 13:06:05 +0100 |
commit | 23b3e3c84d3350790b5095a4bb6e1b7c39f28eea (patch) | |
tree | b0985cafaafc01cca73cb25ec78768f59238ddc2 /src/afl-fuzz-python.c | |
parent | 8b8600fdabb20c344063ead1b0ff2d105e0365be (diff) | |
parent | 1938a122226bdecfed8420d21eeb2b240bff1b6a (diff) | |
download | afl++-23b3e3c84d3350790b5095a4bb6e1b7c39f28eea.tar.gz |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'src/afl-fuzz-python.c')
-rw-r--r-- | src/afl-fuzz-python.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-python.c b/src/afl-fuzz-python.c index 76b5ca80..91e5b084 100644 --- a/src/afl-fuzz-python.c +++ b/src/afl-fuzz-python.c @@ -388,7 +388,7 @@ size_t pre_save_py(void *py_mutator, u8 *buf, size_t buf_size, u8 **out_buf) { } -u32 init_trim_py(void *py_mutator, u8 *buf, size_t buf_size) { +s32 init_trim_py(void *py_mutator, u8 *buf, size_t buf_size) { PyObject *py_args, *py_value; @@ -426,7 +426,7 @@ u32 init_trim_py(void *py_mutator, u8 *buf, size_t buf_size) { } -u32 post_trim_py(void *py_mutator, u8 success) { +s32 post_trim_py(void *py_mutator, u8 success) { PyObject *py_args, *py_value; |