Commit 1298f223 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

server: Fix write_process_memory on Wow64.

parent e5555b0f
......@@ -330,7 +330,7 @@ static long read_thread_long( struct thread *thread, long *addr, long *data )
static long write_thread_long( struct thread *thread, long *addr, long data, unsigned long mask )
{
long res;
if (mask != ~0u)
if (mask != ~0ul)
{
if (read_thread_long( thread, addr, &res ) == -1) return -1;
data = (data & mask) | (res & ~mask);
......
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