In PE_fixup_imports report "module file not found" only in case of a
"file not found" error. Otherwise report failure and error number.
This commit is contained in:
parent
e1c7202716
commit
33be954e62
|
@ -273,7 +273,11 @@ DWORD PE_fixup_imports( WINE_MODREF *wm )
|
|||
|
||||
wmImp = MODULE_LoadLibraryExA( name, 0, 0 );
|
||||
if (!wmImp) {
|
||||
ERR_(module)("Module (file) %s (which is needed by %s) not found\n", name, wm->filename);
|
||||
if(GetLastError() == ERROR_FILE_NOT_FOUND)
|
||||
ERR_(module)("Module (file) %s (which is needed by %s) not found\n", name, wm->filename);
|
||||
else
|
||||
ERR_(module)("Loading module (file) %s (which is needed by %s) failed (error %ld).\n",
|
||||
name, wm->filename, GetLastError());
|
||||
return 1;
|
||||
}
|
||||
wm->deps[i++] = wmImp;
|
||||
|
|
Loading…
Reference in New Issue