mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 11:08:06 +00:00
Unicornafl: Fix incorrect comment (#2103)
This commit is contained in:
@ -119,7 +119,7 @@ def main():
|
|||||||
binary_code = binary_file.read()
|
binary_code = binary_file.read()
|
||||||
binary_file.close()
|
binary_file.close()
|
||||||
|
|
||||||
# Apply constraints to the mutated input
|
# Assert that the binary size is within limits
|
||||||
if len(binary_code) > CODE_SIZE_MAX:
|
if len(binary_code) > CODE_SIZE_MAX:
|
||||||
print("Binary code is too large (> {} bytes)".format(CODE_SIZE_MAX))
|
print("Binary code is too large (> {} bytes)".format(CODE_SIZE_MAX))
|
||||||
return
|
return
|
||||||
|
Reference in New Issue
Block a user