Stop at the real end of the relocation table.

svn path=/trunk/; revision=9881
This commit is contained in:
Eric Kohl 2004-06-26 11:23:32 +00:00
parent 1336676b5e
commit 9a0d240ea4

View file

@ -1,4 +1,4 @@
/* $Id: utils.c,v 1.92 2004/06/25 19:05:20 ekohl Exp $ /* $Id: utils.c,v 1.93 2004/06/26 11:23:32 ekohl Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -1289,6 +1289,7 @@ LdrPerformRelocations(PIMAGE_NT_HEADERS NTHeaders,
RelocationRVA += RelocationDir->SizeOfBlock; RelocationRVA += RelocationDir->SizeOfBlock;
RelocationDir = RelocationDir =
(PRELOCATION_DIRECTORY) (ImageBase + RelocationRVA); (PRELOCATION_DIRECTORY) (ImageBase + RelocationRVA);
RelocationBlockOffset += RelocationDir->SizeOfBlock;
continue; continue;
} }
@ -1333,6 +1334,7 @@ LdrPerformRelocations(PIMAGE_NT_HEADERS NTHeaders,
return(Status); return(Status);
} }
} }
for (i = 0; i < NumberOfEntries; i++) for (i = 0; i < NumberOfEntries; i++)
{ {
Offset = (RelocationBlock[i].TypeOffset & 0xfff); Offset = (RelocationBlock[i].TypeOffset & 0xfff);