We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86a56c commit 75172c5Copy full SHA for 75172c5
qiling/os/uefi/uefi.py
@@ -22,7 +22,7 @@ def __init__(self, ql: Qiling):
22
self.entry_point = 0
23
self.running_module: str
24
self.in_smm: bool
25
- self.PE_RUN = True
+ self.PE_RUN: bool
26
self.heap: QlMemoryHeap # Will be initialized by the loader.
27
28
self.on_module_enter: MutableSequence[Callable[[str], bool]] = []
@@ -206,6 +206,8 @@ def run(self):
206
self.exit_point = self.ql.exit_point
207
208
try:
209
+ self.PE_RUN = True
210
+
211
self.ql.emu_start(self.ql.loader.entry_point, self.exit_point, self.ql.timeout, self.ql.count)
212
except KeyboardInterrupt as ex:
213
self.ql.log.critical(f'Execution interrupted by user')
0 commit comments