summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/win/scoped_handle.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/win/scoped_handle.cc b/base/win/scoped_handle.cc
index 2ebef32..33a8aa5 100644
--- a/base/win/scoped_handle.cc
+++ b/base/win/scoped_handle.cc
@@ -132,6 +132,10 @@ void ActiveVerifier::InstallVerifier() {
// This lock only protects against races in this module, which is fine.
AutoNativeLock lock(g_lock.Get());
g_active_verifier = verifier ? verifier : new ActiveVerifier(true);
+
+ // TODO(shrikant): Enable handle verifier after figuring out
+ // AppContainer/DuplicateHandle error.
+ g_active_verifier->Disable();
#endif
}