Author: spetreolle
Date: Sat Jan 10 17:22:02 2015
New Revision: 66023
URL:
http://svn.reactos.org/svn/reactos?rev=66023&view=rev
Log:
[LDR]
Relocating is NOT an eror.
Modified:
trunk/reactos/dll/ntdll/ldr/ldrutils.c
Modified: trunk/reactos/dll/ntdll/ldr/ldrutils.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/ldr/ldrutils.c?r…
==============================================================================
--- trunk/reactos/dll/ntdll/ldr/ldrutils.c [iso-8859-1] (original)
+++ trunk/reactos/dll/ntdll/ldr/ldrutils.c [iso-8859-1] Sat Jan 10 17:22:02 2015
@@ -1320,7 +1320,7 @@
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 @@
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)