diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-10-19 18:44:51 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-10-19 18:44:51 +0000 |
commit | d732add382b95d1460b281f191f0f0e4397eaf51 (patch) | |
tree | 7fe78df4b2c9e1193446ffb46287158f51819685 /src/google_breakpad/processor | |
parent | Make Breakpad's debug-exception-ignoring configurable. r=Nicolas Sylvain (diff) | |
download | breakpad-d732add382b95d1460b281f191f0f0e4397eaf51.tar.xz |
Issue 222 - processor fails if an entry in the ModuleList is bad. r=mento
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@225 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r-- | src/google_breakpad/processor/minidump.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/minidump.h b/src/google_breakpad/processor/minidump.h index 55b09533..474382b9 100644 --- a/src/google_breakpad/processor/minidump.h +++ b/src/google_breakpad/processor/minidump.h @@ -451,6 +451,11 @@ class MinidumpModule : public MinidumpObject, // be read. bool module_valid_; + // True if debug info was read from the module. Certain modules + // may contain debug records in formats we don't support, + // so we can just set this to false to ignore them. + bool has_debug_info_; + MDRawModule module_; // Cached module name. |