mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 20:22:44 +00:00
minor bug fix
This commit is contained in:
parent
e6493fc41f
commit
f162782416
@ -166,7 +166,8 @@ public class DebugSystemObjectsImpl1 implements DebugSystemObjectsInternal {
|
||||
ULONG ulHandle = new ULONG(systemId);
|
||||
ULONGByReference pulId = new ULONGByReference();
|
||||
HRESULT hr = jnaSysobj.GetProcessIdBySystemId(ulHandle, pulId);
|
||||
if (hr.equals(COMUtilsExtra.E_UNEXPECTED) || hr.equals(COMUtilsExtra.E_NOTIMPLEMENTED)) {
|
||||
if (hr.equals(COMUtilsExtra.E_UNEXPECTED) || hr.equals(COMUtilsExtra.E_NOTIMPLEMENTED) ||
|
||||
hr.equals(COMUtilsExtra.E_NOINTERFACE)) {
|
||||
return null;
|
||||
}
|
||||
COMUtils.checkRC(hr);
|
||||
|
Loading…
Reference in New Issue
Block a user