Print out a slightly more informative message if an ELF module fails

to load.
This commit is contained in:
Robert Shearman 2004-10-04 18:59:10 +00:00 committed by Alexandre Julliard
parent 50b91588e7
commit ffbed1ff9c
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ DWORD WINAPI SymLoadModule(HANDLE hProcess, HANDLE hFile, char* ImageName,
if (!strcmp(ImageName + len - 3, ".so") &&
(module = elf_load_module(pcs, ImageName))) goto done;
FIXME("should no longer happen\n");
FIXME("should have successfully loaded some debug information for image %s\n", ImageName);
if ((module = pe_load_module_from_pcs(pcs, ImageName, ModuleName, BaseOfDll, SizeOfDll)))
goto done;
WARN("Couldn't locate %s\n", ImageName);