| Index: util/win/scoped_handle.cc
|
| diff --git a/util/win/scoped_handle.cc b/util/win/scoped_handle.cc
|
| index 34c1ec7b9fcf30025cffd040eba69f1151d484d5..2cbcd520c1fee26518e2fd80078fabd5072a5c29 100644
|
| --- a/util/win/scoped_handle.cc
|
| +++ b/util/win/scoped_handle.cc
|
| @@ -15,6 +15,7 @@
|
| #include "util/win/scoped_handle.h"
|
|
|
| #include "base/logging.h"
|
| +#include "util/file/file_io.h"
|
|
|
| namespace crashpad {
|
| namespace internal {
|
| @@ -24,7 +25,7 @@ void ScopedFileHANDLECloseTraits::Free(HANDLE handle) {
|
| }
|
|
|
| void ScopedKernelHANDLECloseTraits::Free(HANDLE handle) {
|
| - PCHECK(CloseHandle(handle));
|
| + CheckedCloseFile(handle);
|
| }
|
|
|
| } // namespace internal
|
|
|