diff options
author | Benedikt Radtke <Trolldemorted@users.noreply.github.com> | 2024-05-28 02:24:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 02:24:43 +0200 |
commit | 19636f748cd13d190432dac693590cd9d0b6302b (patch) | |
tree | 2c85d2cf9aeee02594032ba7140465cd9ec43bec | |
parent | 7aa5e1c443c63eb61e9b24f3e7abcd452e03c06f (diff) | |
download | afl++-19636f748cd13d190432dac693590cd9d0b6302b.tar.gz |
Unicornafl: Fix incorrect comment (#2103)
-rw-r--r-- | unicorn_mode/samples/python_simple/simple_test_harness.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/samples/python_simple/simple_test_harness.py b/unicorn_mode/samples/python_simple/simple_test_harness.py index 8758192e..e32cdf81 100644 --- a/unicorn_mode/samples/python_simple/simple_test_harness.py +++ b/unicorn_mode/samples/python_simple/simple_test_harness.py @@ -119,7 +119,7 @@ def main(): binary_code = binary_file.read() binary_file.close() - # Apply constraints to the mutated input + # Assert that the binary size is within limits if len(binary_code) > CODE_SIZE_MAX: print("Binary code is too large (> {} bytes)".format(CODE_SIZE_MAX)) return |