Commit ee99bd4b authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Always send a Wow context to the server for Wow64 processes.

parent 6da06c15
...@@ -1025,6 +1025,9 @@ static void contexts_to_server( context_t server_contexts[2], CONTEXT *context ) ...@@ -1025,6 +1025,9 @@ static void contexts_to_server( context_t server_contexts[2], CONTEXT *context )
context_to_server( &server_contexts[count++], native_machine, native_context, native_machine ); context_to_server( &server_contexts[count++], native_machine, native_context, native_machine );
if (wow_context) context_to_server( &server_contexts[count++], main_image_info.Machine, if (wow_context) context_to_server( &server_contexts[count++], main_image_info.Machine,
wow_context, main_image_info.Machine ); wow_context, main_image_info.Machine );
else if (native_machine != main_image_info.Machine)
context_to_server( &server_contexts[count++], main_image_info.Machine,
native_context, native_machine );
} }
else else
context_to_server( &server_contexts[count++], native_machine, context_to_server( &server_contexts[count++], native_machine,
......
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