Skip to content
Snippets Groups Projects
Commit c7152431 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

ntdll: Fix a typo in SegSs handling in NtSetContextThread.


Spotted by Brendan Shanks.

Signed-off-by: default avatarJacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent a33c14fd
Branches
Tags
No related merge requests found
......@@ -1310,7 +1310,7 @@ NTSTATUS WINAPI NtGetContextThread( HANDLE handle, CONTEXT *context )
context->Eip = frame->eip;
context->EFlags = frame->eflags;
context->SegCs = frame->cs;
context->SegSs = frame->ds;
context->SegSs = frame->ss;
context->ContextFlags |= CONTEXT_CONTROL;
}
if (needed_flags & CONTEXT_SEGMENTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment