diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 19:35:40 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 19:35:40 +0000 |
commit | bb3dc256b24a68e9fbe152599845d4a9a5956c68 (patch) | |
tree | 777bc9f350445a0644ef9fc5ba98e890a333ebfb /sandbox/wow_helper | |
parent | c6976260126c8f26c5b570750c29d10a2c9b486b (diff) | |
download | chromium_src-bb3dc256b24a68e9fbe152599845d4a9a5956c68.zip chromium_src-bb3dc256b24a68e9fbe152599845d4a9a5956c68.tar.gz chromium_src-bb3dc256b24a68e9fbe152599845d4a9a5956c68.tar.bz2 |
Sandbox: Add support for Windows 7 - 64 bit.
BUG=4324
TEST=IntegrationTestsTest.*
Review URL: http://codereview.chromium.org/20023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9096 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/wow_helper')
-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 |