mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
LdrFixupImports more verbose when DLL not found.
svn path=/trunk/; revision=1454
This commit is contained in:
parent
02d3c2cb72
commit
3d521d0a20
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: utils.c,v 1.34 2000/09/05 11:01:03 ekohl Exp $
|
||||
/* $Id: utils.c,v 1.35 2000/12/07 17:00:12 jean Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -865,6 +865,10 @@ static NTSTATUS LdrFixupImports(PIMAGE_NT_HEADERS NTHeaders,
|
|||
RtlFreeUnicodeString (&DllName);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DbgPrint("LdrFixupImports:failed to load %s\n"
|
||||
,(PCHAR)(ImageBase
|
||||
+ ImportModuleDirectory->dwRVAModuleName));
|
||||
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue