Relocating is NOT an eror.

svn path=/trunk/; revision=66023
This commit is contained in:
Sylvain Petreolle 2015-01-10 17:22:02 +00:00
parent 6117764150
commit 740ddee885

View file

@ -1320,7 +1320,7 @@ SkipCheck:
ImageBase = (ULONG_PTR)NtHeaders->OptionalHeader.ImageBase;
ImageEnd = ImageBase + ViewSize;
DPRINT1("LDR: LdrpMapDll Relocating Image Name %ws (%p -> %p)\n", DllName, (PVOID)ImageBase, ViewBase);
DPRINT("LDR: LdrpMapDll Relocating Image Name %ws (%p -> %p)\n", DllName, (PVOID)ImageBase, ViewBase);
/* Scan all the modules */
ListHead = &Peb->Ldr->InLoadOrderModuleList;
@ -1359,7 +1359,7 @@ SkipCheck:
RtlInitUnicodeString(&OverlapDll, L"Dynamically Allocated Memory");
}
DPRINT1("Overlapping DLL: %wZ\n", &OverlapDll);
DPRINT("Overlapping DLL: %wZ\n", &OverlapDll);
/* Are we dealing with a DLL? */
if (LdrEntry->Flags & LDRP_IMAGE_DLL)