ntdll: Print a diagnostic when mscoree cannot be loaded.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dfc829ceb8
commit
8b35892b15
|
@ -911,7 +911,12 @@ static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path, void *
|
|||
current_modref = wm;
|
||||
if (!(status = load_dll( load_path, mscoreeW, 0, &imp ))) wm->deps[0] = imp;
|
||||
current_modref = prev;
|
||||
if (status) return status;
|
||||
if (status)
|
||||
{
|
||||
ERR( "mscoree.dll not found, IL-only binary %s cannot be loaded\n",
|
||||
debugstr_w(wm->ldr.BaseDllName.Buffer) );
|
||||
return status;
|
||||
}
|
||||
|
||||
TRACE( "loaded mscoree for %s\n", debugstr_w(wm->ldr.FullDllName.Buffer) );
|
||||
|
||||
|
|
Loading…
Reference in New Issue