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 e3dcbec commit 5316aa4Copy full SHA for 5316aa4
qiling/debugger/gdb/gdb.py
@@ -673,6 +673,10 @@ def handle_v(subcmd):
673
self.send("")
674
675
elif subcmd.startswith('File:open'):
676
+ if self.ql.ostype == QL_OS.UEFI and self.ql.custom_engine == True:
677
+ self.send("F-1")
678
+ return
679
+
680
(file_path, flags, mode) = subcmd.split(':')[-1].split(',')
681
file_path = unhexlify(file_path).decode(encoding='UTF-8')
682
flags = int(flags, base=16)
@@ -688,6 +692,7 @@ def handle_v(subcmd):
688
692
self.send("F%x" % fd)
689
693
else:
690
694
self.send("F-1")
695
691
696
697
elif subcmd.startswith('File:pread:'):
698
(fd, count, offset) = subcmd.split(':')[-1].split(',')
0 commit comments