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 4cd37f5 commit 5bf781dCopy full SHA for 5bf781d
qiling/os/uefi/uefi.py
@@ -70,7 +70,7 @@ def fallback(v):
70
POINTER : lambda v: f'{v:#010x}' if v else 'NULL',
71
STRING : lambda v: QlOsUtils.stringify(v),
72
WSTRING : lambda v: f'L{QlOsUtils.stringify(v)}',
73
- GUID : lambda v: guids_db.get(v.upper(), v)
+ GUID : lambda v: guids_db.get(v.upper(), v) if v else 'NULL'
74
}
75
76
return tuple((aname, ahandlers.get(atype, fallback)(avalue)) for atype, aname, avalue in targs)
0 commit comments