dbghelp: Don't fail to initialize if we can't load the main module as ELF.
This commit is contained in:
parent
9686acb46c
commit
ae5aacb4cc
|
@ -171,7 +171,8 @@ static BOOL check_live_target(struct process* pcs)
|
|||
{
|
||||
if (!GetProcessId(pcs->handle)) return FALSE;
|
||||
if (GetEnvironmentVariableA("DBGHELP_NOLIVE", NULL, 0)) return FALSE;
|
||||
return elf_read_wine_loader_dbg_info(pcs);
|
||||
elf_read_wine_loader_dbg_info(pcs);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
|
|
Loading…
Reference in New Issue