diff options
author | h1994st <h1994st@gmail.com> | 2020-03-27 21:03:06 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:06 +0200 |
commit | d568559f01b1a7609f8a0c4f7afea513375725e4 (patch) | |
tree | ad28771a6c0e81c7b30beaa1281229658cea3b25 | |
parent | 1e290542bb77f35d1e7bb340077f1c28c0b03b81 (diff) | |
download | afl++-d568559f01b1a7609f8a0c4f7afea513375725e4.tar.gz |
Fix typo
-rw-r--r-- | examples/custom_mutators/example.py | 3 | ||||
-rwxr-xr-x | test/test.sh | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/examples/custom_mutators/example.py b/examples/custom_mutators/example.py index 6bacfa05..6b58188e 100644 --- a/examples/custom_mutators/example.py +++ b/examples/custom_mutators/example.py @@ -164,11 +164,10 @@ def fuzz(buf, add_buf, max_size): # ''' # Called after adding a new test case to the queue # -# @type filename_new_queue: str +# @type filename_new_queue: str # @param filename_new_queue: File name of the new queue entry # # @type filename_orig_queue: str # @param filename_orig_queue: File name of the original queue entry # ''' # pass - diff --git a/test/test.sh b/test/test.sh index 0d3c7199..11c4be25 100755 --- a/test/test.sh +++ b/test/test.sh @@ -60,8 +60,8 @@ unset AFL_QEMU_PERSISTENT_GPR unset AFL_QEMU_PERSISTENT_RET unset AFL_QEMU_PERSISTENT_HOOK unset AFL_QEMU_PERSISTENT_CNT - -export unset AFL_CUSTOM_MUTATOR_LIBRARY=unset AFL_POST_LIBRARY +unset AFL_POST_LIBRARY +unset AFL_CUSTOM_MUTATOR_LIBRARY unset AFL_PYTHON_MODULE unset AFL_PRELOAD unset LD_PRELOAD |