diff options
author | Chenhao <tylzh1997@vip.qq.com> | 2024-07-05 16:43:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 10:43:20 +0200 |
commit | b840ac91dc1d53cb0216edcecc9a0f17ab6e64db (patch) | |
tree | 1f39b915540138ea004b68932cfe1bf781ce350f | |
parent | dcd2f9ac77144a7a7d7f10efd7a5b47c474a4022 (diff) | |
download | afl++-b840ac91dc1d53cb0216edcecc9a0f17ab6e64db.tar.gz |
Fixed the syntax errors in `unicorn_loader.py` within `unicorn_mode`. (#2144)
Replaced a Chinese comma "," with an English comma "," to ensure the code runs correctly.
-rw-r--r-- | unicorn_mode/helper_scripts/unicorn_loader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/helper_scripts/unicorn_loader.py b/unicorn_mode/helper_scripts/unicorn_loader.py index a83e7000..4219c6ab 100644 --- a/unicorn_mode/helper_scripts/unicorn_loader.py +++ b/unicorn_mode/helper_scripts/unicorn_loader.py @@ -90,7 +90,7 @@ class UnicornSimpleHeap(object): _chunks_freed = [] # List of all freed chunks _debug_print = False # True to print debug information - def __init__(self, uc, debug_print=False, uaf_check=False): + def __init__(self, uc, debug_print=False, uaf_check=False): self._uc = uc self._debug_print = debug_print |