diff options
author | h1994st <h1994st@gmail.com> | 2020-03-29 01:06:28 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:07 +0200 |
commit | 71edae4a0fd7ca64a6f2c87768d14136ac04b0a1 (patch) | |
tree | 25144530551e59e718731a0131191b88d8794c01 | |
parent | 0dd8ed9171cdbee3360f4b7f6a9fd91e7478a508 (diff) | |
download | afl++-71edae4a0fd7ca64a6f2c87768d14136ac04b0a1.tar.gz |
example.py: add deinit()
-rw-r--r-- | examples/custom_mutators/example.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/custom_mutators/example.py b/examples/custom_mutators/example.py index 6b58188e..7919d3d3 100644 --- a/examples/custom_mutators/example.py +++ b/examples/custom_mutators/example.py @@ -27,6 +27,10 @@ def init(seed): random.seed(seed) +def deinit(): + pass + + def fuzz(buf, add_buf, max_size): ''' Called per fuzzing iteration. |