ntdll: Fix the fake 32-bit %cs value on ARM64EC.

This commit is contained in:
Alexandre Julliard 2024-06-20 16:17:01 +02:00
parent b7a3023ca1
commit 0d5936563d

View file

@ -249,7 +249,7 @@ NTSTATUS WINAPI RtlWow64GetThreadSelectorEntry( HANDLE handle, THREAD_DESCRIPTOR
{
/* hardcoded values */
#ifdef __arm64ec__
context.SegCs = 0x33;
context.SegCs = 0x23;
context.SegSs = 0x2b;
context.SegFs = 0x53;
#elif defined(__x86_64__)