Toggle navigation
Toggle navigation
This project
Loading...
Sign in
I_Jemin
/
ITHVNR_kor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
I_Jemin
2016-11-13 02:52:46 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8714645aa046faf28bd2a5d2f12f14a5a34926b9
8714645a
1 parent
e20ea31e
C_932 로드시 SysWow64 리다이렉션을 해제
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
vnr/ithsys/ithsys.cc
vnr/ithsys/ithsys.cc
View file @
8714645
// ithsys.cc
// ithsys.cc
// 8/21/2013 jichi
// Branch: ITH_SYS/SYS.cpp, rev 126
//
...
...
@@ -758,6 +758,16 @@ BOOL IthInitSystemService()
return
FALSE
;
DWORD
base
=
(
DWORD
)
peb
->
ReadOnlySharedMemoryBase
;
DWORD
end
=
base
+
info
.
RegionSize
-
0x40
;
// 일본어 코드 페이지 C_932 이 SysWow64에 없음
// 64bit에서 (32bit) 로 실행할 경우 SysWow64로 리다이렉트 되는 것 해제
PVOID
OldValue
;
Wow64DisableWow64FsRedirection
(
&
OldValue
);
static
WCHAR
system32
[]
=
L"system32"
;
for
(;
base
<
end
;
base
+=
2
)
if
(
::
memcmp
((
PVOID
)
base
,
system32
,
0x10
)
==
0
)
{
...
...
Please
register
or
login
to post a comment