| Index: third_party/crashpad/crashpad/test/paths_win.cc
|
| diff --git a/third_party/crashpad/crashpad/test/paths_win.cc b/third_party/crashpad/crashpad/test/paths_win.cc
|
| index 947acd5cce951ca54d4aff8582877eb98a0489fa..019794d0acf4d1eabeb8b796692e828eec6cab9a 100644
|
| --- a/third_party/crashpad/crashpad/test/paths_win.cc
|
| +++ b/third_party/crashpad/crashpad/test/paths_win.cc
|
| @@ -26,7 +26,8 @@ base::FilePath Paths::Executable() {
|
| wchar_t executable_path[_MAX_PATH];
|
| unsigned int len =
|
| GetModuleFileName(nullptr, executable_path, arraysize(executable_path));
|
| - PCHECK(len != 0 && len < arraysize(executable_path)) << "GetModuleFileName";
|
| + // GetModuleFileName
|
| + CHECK(len != 0 && len < arraysize(executable_path));
|
| return base::FilePath(executable_path);
|
| }
|
|
|
|
|