diff options
Diffstat (limited to 'remoting/base')
-rw-r--r-- | remoting/base/breakpad_win.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/remoting/base/breakpad_win.cc b/remoting/base/breakpad_win.cc index ef16a24..d083ceed 100644 --- a/remoting/base/breakpad_win.cc +++ b/remoting/base/breakpad_win.cc @@ -112,12 +112,10 @@ BreakpadWin::BreakpadWin() : handling_exception_(0) { if (length == 0) return; - // Minidump with stacks, PEB, TEB, unloaded module list and memory referenced - // from stack. + // Minidump with stacks, PEB, TEBs and unloaded module list. MINIDUMP_TYPE dump_type = static_cast<MINIDUMP_TYPE>( MiniDumpWithProcessThreadData | - MiniDumpWithUnloadedModules | - MiniDumpWithIndirectlyReferencedMemory); + MiniDumpWithUnloadedModules); breakpad_.reset( new google_breakpad::ExceptionHandler( temp_directory, &OnExceptionCallback, NULL, NULL, |