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

Unified Diff: client/crash_report_database_test.cc

Issue 867363003: win: Implementation of CrashReportDatabase for Windows (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixed size binary data file Created 5 years, 11 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
Index: client/crash_report_database_test.cc
diff --git a/client/crash_report_database_test.cc b/client/crash_report_database_test.cc
index d2464863fea4e9b5914b98ab9d20347bdf0fb4ac..9e7f798039c66b32107f253090075df7d12e378a 100644
--- a/client/crash_report_database_test.cc
+++ b/client/crash_report_database_test.cc
@@ -30,7 +30,7 @@ bool FileExistsAtPath(const base::FilePath& path) {
return lstat(path.value().c_str(), &st) == 0;
#elif defined(OS_WIN)
struct _stat st;
- return _wstat(path.value().c_str(), &st);
+ return _wstat(path.value().c_str(), &st) == 0;
#else
#error "Not implemented"
#endif

Powered by Google App Engine
This is Rietveld 408576698