Merge pull request #6226 from miniak/fix-uninitialized-member-var

Fix uninitialized member variable in CrashReporterWin
This commit is contained in:
Cheng Zhao 2016-06-25 01:18:19 +00:00 committed by GitHub
commit 8a4c8eb305

View file

@ -137,7 +137,8 @@ void UnregisterNonABICompliantCodeRange(void* start) {
} // namespace
CrashReporterWin::CrashReporterWin() {
CrashReporterWin::CrashReporterWin()
: skip_system_crash_handler_(false) {
}
CrashReporterWin::~CrashReporterWin() {