mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fix some pointer casts.
svn path=/trunk/; revision=16969
This commit is contained in:
parent
ef03d1cb40
commit
b0c4274c66
1 changed files with 2 additions and 2 deletions
|
@ -1375,8 +1375,8 @@ LdrPEGetExportByOrdinal (
|
|||
? RVA(BaseAddress, ExFunctions[Ordinal - ExportDir->Base] )
|
||||
: NULL;
|
||||
|
||||
if (((ULONG)Function >= (ULONG)ExportDir) &&
|
||||
((ULONG)Function < (ULONG)ExportDir + (ULONG)ExportDirSize))
|
||||
if (((ULONG_PTR)Function >= (ULONG_PTR)ExportDir) &&
|
||||
((ULONG_PTR)Function < (ULONG_PTR)ExportDir + ExportDirSize))
|
||||
{
|
||||
DPRINT("Forward: %s\n", (PCHAR)Function);
|
||||
Function = LdrPEFixupForward((PCHAR)Function);
|
||||
|
|
Loading…
Reference in a new issue