Module: wine Branch: refs/heads/master Commit: 177bf4c1a64b5a3a15b1b173543af27e18264aa2 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=177bf4c1a64b5a3a15b1b173...
Author: Eric Pouech eric.pouech@wanadoo.fr Date: Mon Dec 19 17:41:43 2005 +0100
dbghelp: Fixed loading .so modules from a living target.
---
dlls/dbghelp/elf_module.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c index 153e63a..1c8a983 100644 --- a/dlls/dbghelp/elf_module.c +++ b/dlls/dbghelp/elf_module.c @@ -1381,7 +1381,7 @@ static BOOL elf_load_cb(const char* name 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;