[!] bug fixed: issue #7623 ( memory routines failed to work at wow64 application )

git-svn-id: https://pykd.svn.codeplex.com/svn@57433 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2010-11-12 15:58:13 +00:00
parent d2632027f5
commit 2929128d54

View File

@ -51,7 +51,7 @@ ULONG64
addr64( ULONG64 addr )
{
if ( *( (ULONG*)&addr + 1 ) == 0 )
*( (ULONG*)&addr + 1 ) = 0xFFFFFFFF;
return (ULONG64)(LONG)addr;
return addr;
}