Skip to content
Snippets Groups Projects
Commit 6747ecde authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard
Browse files

ntdll: Fix context arch flag cleanup for AMD64 in context_from_server().

parent f1958583
No related branches found
No related tags found
No related merge requests found
......@@ -755,7 +755,7 @@ static NTSTATUS context_from_server( void *dst, const context_t *from, USHORT ma
{
AMD64_CONTEXT *to = dst;
to_flags = to->ContextFlags & ~CONTEXT_i386;
to_flags = to->ContextFlags & ~CONTEXT_AMD64;
if ((from->flags & SERVER_CTX_CONTROL) && (to_flags & CONTEXT_AMD64_CONTROL))
{
to->ContextFlags |= CONTEXT_AMD64_CONTROL;
......@@ -830,7 +830,7 @@ static NTSTATUS context_from_server( void *dst, const context_t *from, USHORT ma
{
AMD64_CONTEXT *to = dst;
to_flags = to->ContextFlags & ~CONTEXT_i386;
to_flags = to->ContextFlags & ~CONTEXT_AMD64;
if ((from->flags & SERVER_CTX_CONTROL) && (to_flags & CONTEXT_AMD64_CONTROL))
{
to->ContextFlags |= CONTEXT_AMD64_CONTROL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment