mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ntdll: Fix a typo in SegSs handling in NtSetContextThread.
Spotted by Brendan Shanks. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a33c14fd44
commit
c715243122
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue