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

Unified Diff: chrome/app/breakpad_mac.mm

Issue 115493: Fix for breakpad not generating a minidump in certain cases on OSX. (Closed)
Patch Set: Created 11 years, 7 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 | « base/debug_util_mac.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/breakpad_mac.mm
diff --git a/chrome/app/breakpad_mac.mm b/chrome/app/breakpad_mac.mm
index 445edcb887697dc509643d8ea5f3df6cb853c053..28afe27bc8d5bf940fa2447624a47e35fc080a57 100644
--- a/chrome/app/breakpad_mac.mm
+++ b/chrome/app/breakpad_mac.mm
@@ -45,7 +45,7 @@ BreakpadRef gBreakpadRef = NULL;
} // namespace
bool IsCrashReporterEnabled() {
- return gBreakpadRef == NULL;
+ return gBreakpadRef != NULL;
John Grabowski 2009/05/19 00:11:50 DOH!!!!!
}
void DestructCrashReporter() {
« no previous file with comments | « base/debug_util_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698