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
Eguni
2016-11-13 06:19:20 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0ec3d48ce39cad75500b55318052481e7d33c486
0ec3d48c
1 parent
8714645a
RS1 Issue committed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
vnr/ithsys/ithsys.cc
vnr/ithsys/ithsys.cc
View file @
0ec3d48
...
...
@@ -759,14 +759,10 @@ BOOL IthInitSystemService()
DWORD
base
=
(
DWORD
)
peb
->
ReadOnlySharedMemoryBase
;
DWORD
end
=
base
+
info
.
RegionSize
-
0x40
;
// 일본어 코드 페이지 C_932 이 SysWow64에 없음
// 64bit에서 (32bit) 로 실행할 경우 SysWow64로 리다이렉트 되는 것 해제
// I_Jemin 13/11/2016
// Prevent redirecting SYSWOW64 to receive Shift-JIS
PVOID
OldValue
;
Wow64DisableWow64FsRedirection
(
&
OldValue
);
static
WCHAR
system32
[]
=
L"system32"
;
for
(;
base
<
end
;
base
+=
2
)
...
...
@@ -777,6 +773,11 @@ BOOL IthInitSystemService()
while
(
*
obj
!=
L'\\'
)
obj
++
;
break
;
}
// Eguni 13/11/2016
// Dispose redirection
Wow64EnableWow64FsRedirection
(
FALSE
);
if
(
base
==
end
)
return
FALSE
;
}
...
...
Please
register
or
login
to post a comment