dbghelp: Don't fail to initialize if we can't load the main module as ELF.

This commit is contained in:
Alexandre Julliard 2006-04-19 14:30:10 +02:00
parent 9686acb46c
commit ae5aacb4cc
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}
/******************************************************************