dbghelp: Don't return error when validating a 64bit wide address on a 64bit platform.
This commit is contained in:
parent
02a70615f9
commit
9ff52fb82c
|
@ -106,7 +106,7 @@ struct process* process_find_by_handle(HANDLE hProcess)
|
|||
*/
|
||||
BOOL validate_addr64(DWORD64 addr)
|
||||
{
|
||||
if (addr >> 32)
|
||||
if (sizeof(void*) == sizeof(int) && (addr >> 32))
|
||||
{
|
||||
FIXME("Unsupported address %s\n", wine_dbgstr_longlong(addr));
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
|
|
Loading…
Reference in New Issue