diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 22:49:01 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 22:49:01 +0000 |
commit | ce39c457611011707abc11a63ff8f91046ded031 (patch) | |
tree | 46a4d4d060547c6ac77c7772e7bf27ef46eda9d3 /sandbox/wow_helper/service64_resolver.cc | |
parent | c4aae8eab78e3b234d26e3b1dfc9cc0f4cd98861 (diff) | |
download | chromium_src-ce39c457611011707abc11a63ff8f91046ded031.zip chromium_src-ce39c457611011707abc11a63ff8f91046ded031.tar.gz chromium_src-ce39c457611011707abc11a63ff8f91046ded031.tar.bz2 |
Sandbox: Add support for Windows 7 - 64 bit.
BUG=4324
TEST=IntegrationTestsTest.*
Review URL: http://codereview.chromium.org/20026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9104 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/wow_helper/service64_resolver.cc')
-rw-r--r-- | sandbox/wow_helper/service64_resolver.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sandbox/wow_helper/service64_resolver.cc b/sandbox/wow_helper/service64_resolver.cc index 91a6716..4fddba9 100644 --- a/sandbox/wow_helper/service64_resolver.cc +++ b/sandbox/wow_helper/service64_resolver.cc @@ -266,9 +266,7 @@ bool Service64ResolverThunk::IsFunctionAService(void* local_thunk) const { return false; if (kMmovR10EcxMovEax != function_code.mov_r10_ecx_mov_eax || - kSyscall != function_code.syscall || kRetNp != function_code.ret || - kPad != function_code.pad || kNop16 != function_code.xchg_ax_ax1 || - kNop16 != function_code.xchg_ax_ax1) + kSyscall != function_code.syscall || kRetNp != function_code.ret) return false; // Save the verified code |