about summary refs log tree commit diff
path: root/src/afl-fuzz-python.c
diff options
context:
space:
mode:
authoryangzao <yangzaocn@outlook.com>2023-11-27 09:58:03 -0700
committeryangzao <yangzaocn@outlook.com>2023-11-27 09:58:03 -0700
commitc9e0f01b439870dc2b619ab2c18240b201ca1460 (patch)
tree1cd8424fcb2d10da30b0578529a6f617aaf30206 /src/afl-fuzz-python.c
parentfaedb3fb29186c29a4f0cf28daa5d07350ed8094 (diff)
downloadafl++-c9e0f01b439870dc2b619ab2c18240b201ca1460.tar.gz
format code
Diffstat (limited to 'src/afl-fuzz-python.c')
-rw-r--r--src/afl-fuzz-python.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/afl-fuzz-python.c b/src/afl-fuzz-python.c
index 1b287405..4c7da774 100644
--- a/src/afl-fuzz-python.c
+++ b/src/afl-fuzz-python.c
@@ -939,9 +939,7 @@ void post_run_py(void *py_mutator) {
 
   py_args = PyTuple_New(0);
   py_value = PyObject_CallObject(
-      ((py_mutator_t *)py_mutator)
-          ->py_functions[PY_FUNC_POST_RUN],
-      py_args);
+      ((py_mutator_t *)py_mutator)->py_functions[PY_FUNC_POST_RUN], py_args);
   Py_DECREF(py_args);
 
   if (py_value != NULL) {