diff options
author | h1994st <h1994st@gmail.com> | 2020-03-29 01:06:28 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-30 16:46:54 +0200 |
commit | 45561d552e8612fbae91641a43a7db6597af9dba (patch) | |
tree | 25144530551e59e718731a0131191b88d8794c01 /examples/custom_mutators | |
parent | fbd5bd8f37c9285d5201c969587067586c9109bc (diff) | |
download | afl++-45561d552e8612fbae91641a43a7db6597af9dba.tar.gz |
example.py: add deinit()
Diffstat (limited to 'examples/custom_mutators')
-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. |