mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-605: Fix for dbgeng
This commit is contained in:
parent
c481a87ab5
commit
aa18341dca
3 changed files with 31 additions and 23 deletions
|
@ -145,7 +145,8 @@ public class DebugSystemObjectsImpl1 implements DebugSystemObjectsInternal {
|
|||
ULONG ulHandle = new ULONG(systemId);
|
||||
ULONGByReference pulId = new ULONGByReference();
|
||||
HRESULT hr = jnaSysobj.GetThreadIdBySystemId(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…
Add table
Add a link
Reference in a new issue