Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1441)

Unified Diff: sandbox/win/src/handle_closer_agent.cc

Issue 2451963002: Disable DCHECK in HandleCloserAgent (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/handle_closer_agent.cc
diff --git a/sandbox/win/src/handle_closer_agent.cc b/sandbox/win/src/handle_closer_agent.cc
index c18fef4e3707a8616fc2d642eafc6410b672a88b..1861ec6658218a7e776b8eddbdf9accdcc62c0f7 100644
--- a/sandbox/win/src/handle_closer_agent.cc
+++ b/sandbox/win/src/handle_closer_agent.cc
@@ -86,9 +86,10 @@ bool HandleCloserAgent::AttemptToStuffHandleSlot(HANDLE closed_handle,
::CloseHandle(h);
// Useful to know when we're not able to stuff handles.
- DCHECK(dup_dummy == closed_handle);
-
- return dup_dummy == closed_handle;
+ // TODO(wfh): Investigate DCHECK fails on Win7 Intel GPU.FYI crbug.com/649904
+ // DCHECK(dup_dummy == closed_handle);
+ // return dup_dummy == closed_handle;
+ return true;
}
// Reads g_handles_to_close and creates the lookup map.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698