Commit 8bd3c060 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Now correctly checking calling down to 32 bit version.

parent 43503576
......@@ -397,8 +397,7 @@ DWORD64 WINAPI SymLoadModuleEx(HANDLE hProcess, HANDLE hFile, PCSTR ImageName,
DWORD WINAPI SymLoadModule64(HANDLE hProcess, HANDLE hFile, char* ImageName,
char* ModuleName, DWORD64 BaseOfDll, DWORD SizeOfDll)
{
FIXME("SymLoadModule should probably reference SymLoadModule64 instead of this way\n");
if (!validate_addr64(BaseOfDll)) return FALSE;
return SymLoadModule(hProcess, hFile, ImageName, ModuleName, (DWORD)BaseOfDll, SizeOfDll);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment