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.
This commit is contained in:
Chenhao 2024-07-05 16:43:20 +08:00 committed by GitHub
parent dcd2f9ac77
commit b840ac91dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,7 @@ class UnicornSimpleHeap(object):
_chunks_freed = [] # List of all freed chunks _chunks_freed = [] # List of all freed chunks
_debug_print = False # True to print debug information _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._uc = uc
self._debug_print = debug_print self._debug_print = debug_print