Unicornafl: Fix incorrect comment (#2103)

This commit is contained in:
Benedikt Radtke
2024-05-28 02:24:43 +02:00
committed by GitHub
parent 7aa5e1c443
commit 19636f748c

View File

@ -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