From: Milan Burda Date: Fri, 24 Jun 2016 15:51:31 +0000 (+0200) Subject: Fix uninitialized member variable in CrashReporterWin X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfc2f3f0c64d750de6ca0467ee40fb5630933fc8;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Fix uninitialized member variable in CrashReporterWin --- diff --git a/atom/common/crash_reporter/crash_reporter_win.cc b/atom/common/crash_reporter/crash_reporter_win.cc index 4264f6a..7ce61d6 100644 --- a/atom/common/crash_reporter/crash_reporter_win.cc +++ b/atom/common/crash_reporter/crash_reporter_win.cc @@ -137,7 +137,8 @@ void UnregisterNonABICompliantCodeRange(void* start) { } // namespace -CrashReporterWin::CrashReporterWin() { +CrashReporterWin::CrashReporterWin() + : skip_system_crash_handler_(false) { } CrashReporterWin::~CrashReporterWin() {