Merge pull request #6226 from miniak/fix-uninitialized-member-var
Fix uninitialized member variable in CrashReporterWin
This commit is contained in:
commit
8a4c8eb305
1 changed files with 2 additions and 1 deletions
|
@ -137,7 +137,8 @@ void UnregisterNonABICompliantCodeRange(void* start) {
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
CrashReporterWin::CrashReporterWin() {
|
CrashReporterWin::CrashReporterWin()
|
||||||
|
: skip_system_crash_handler_(false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
CrashReporterWin::~CrashReporterWin() {
|
CrashReporterWin::~CrashReporterWin() {
|
||||||
|
|
Loading…
Reference in a new issue