dbghelp: Fixed loading .so modules from a living target.

This commit is contained in:
Eric Pouech 2005-12-19 17:41:43 +01:00 committed by Alexandre Julliard
parent df7be14ce2
commit 177bf4c1a6
1 changed files with 1 additions and 1 deletions

View File

@ -1381,7 +1381,7 @@ static BOOL elf_load_cb(const char* name, unsigned long addr, void* user)
if (!p++) p = name;
if (!memcmp(p, el->name, strlen(el->name)))
{
elf_search_and_load_file(el->pcs, name, addr, &el->elf_info);
el->ret = elf_search_and_load_file(el->pcs, name, addr, &el->elf_info);
return FALSE;
}
return TRUE;