Commit 177bf4c1 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent df7be14c
...@@ -1381,7 +1381,7 @@ static BOOL elf_load_cb(const char* name, unsigned long addr, void* user) ...@@ -1381,7 +1381,7 @@ static BOOL elf_load_cb(const char* name, unsigned long addr, void* user)
if (!p++) p = name; if (!p++) p = name;
if (!memcmp(p, el->name, strlen(el->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 FALSE;
} }
return TRUE; return TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment