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 c10e5e0 commit 39f13bdCopy full SHA for 39f13bd
qiling/debugger/qdb/qdb.py
@@ -302,8 +302,11 @@ def do_examine(self: QlQdb, line: str) -> None:
302
e.g. x/4wx 0x41414141 , print 4 word size begin from address 0x41414141 in hex
303
"""
304
305
- if type(err_msg := examine_mem(self.ql, line)) is str:
306
- print(f"{color.RED}[!] {err_msg} ...{color.END}")
+ try:
+ if type(err_msg := examine_mem(self.ql, line)) is str:
307
+ print(f"{color.RED}[!] {err_msg} ...{color.END}")
308
+ except:
309
+ print(f"{color.RED}[!] something went wrong ...{color.END}")
310
311
def do_show(self: QlQdb, *args) -> None:
312
0 commit comments