Update afl-fuzz-python.c
Fix havoc_mutations not working in python version
diff --git a/src/afl-fuzz-python.c b/src/afl-fuzz-python.c
index 3aa9763..bc481b4 100644
--- a/src/afl-fuzz-python.c
+++ b/src/afl-fuzz-python.c
@@ -445,6 +445,10 @@
/* Initialize the custom mutator */
init_py(afl, py_mutator, rand_below(afl, 0xFFFFFFFF));
+
+ mutator->stacked_custom = (mutator && mutator->afl_custom_havoc_mutation);
+ mutator->stacked_custom_prob =
+ 6; // like one of the default mutations in havoc
return mutator;