Merge pull request #1 from IJEMIN/master

sysWow64 리다이렉트를 해제
This commit is contained in:
mireado 2016-11-13 20:52:11 +09:00 committed by GitHub
commit 388115999a

View File

@ -1,4 +1,4 @@
// ithsys.cc // ithsys.cc
// 8/21/2013 jichi // 8/21/2013 jichi
// Branch: ITH_SYS/SYS.cpp, rev 126 // Branch: ITH_SYS/SYS.cpp, rev 126
// //
@ -758,6 +758,12 @@ BOOL IthInitSystemService()
return FALSE; return FALSE;
DWORD base = (DWORD)peb->ReadOnlySharedMemoryBase; DWORD base = (DWORD)peb->ReadOnlySharedMemoryBase;
DWORD end = base + info.RegionSize - 0x40; DWORD end = base + info.RegionSize - 0x40;
// I_Jemin 13/11/2016
// Prevent redirecting SYSWOW64 to receive Shift-JIS
PVOID OldValue;
Wow64DisableWow64FsRedirection(&OldValue);
static WCHAR system32[] = L"system32"; static WCHAR system32[] = L"system32";
for (;base < end; base += 2) for (;base < end; base += 2)
if (::memcmp((PVOID)base, system32, 0x10) == 0) { if (::memcmp((PVOID)base, system32, 0x10) == 0) {
@ -767,6 +773,11 @@ BOOL IthInitSystemService()
while (*obj != L'\\') obj++; while (*obj != L'\\') obj++;
break; break;
} }
// Eguni 13/11/2016
// Dispose redirection
Wow64EnableWow64FsRedirection(FALSE);
if (base == end) if (base == end)
return FALSE; return FALSE;
} }