diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-31 03:01:20 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-31 03:01:20 +0000 |
commit | 8fc628b7acf7717794012318347d8919f07c25d4 (patch) | |
tree | 6c661676e657ad6d001feb8b896b79bf257ef7c0 /base | |
parent | e8894f7a0de0d80d2beb0a5b7cd2d4a3fc324a83 (diff) | |
download | chromium_src-8fc628b7acf7717794012318347d8919f07c25d4.zip chromium_src-8fc628b7acf7717794012318347d8919f07c25d4.tar.gz chromium_src-8fc628b7acf7717794012318347d8919f07c25d4.tar.bz2 |
Base: Crash when failing to close a process/thread handle.
BUG=127931
TEST=none
TBR=willchan
Review URL: https://chromiumcodereview.appspot.com/10447108
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139722 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/win/scoped_process_information.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/win/scoped_process_information.cc b/base/win/scoped_process_information.cc index 615e901..4adb8d4 100644 --- a/base/win/scoped_process_information.cc +++ b/base/win/scoped_process_information.cc @@ -18,7 +18,7 @@ void CheckAndCloseHandle(HANDLE handle) { return; if (::CloseHandle(handle)) return; - DPCHECK(false) << "Failed to close a handle."; + CHECK(false); } // Duplicates source into target, returning true upon success. |target| is |