Index: src/google_breakpad/processor/process_state.h |
=================================================================== |
--- src/google_breakpad/processor/process_state.h (revision 1199) |
+++ src/google_breakpad/processor/process_state.h (working copy) |
@@ -109,6 +109,9 @@ |
const vector<const CodeModule*>* modules_without_symbols() const { |
return &modules_without_symbols_; |
} |
+ const vector<const CodeModule*>* modules_with_corrupt_symbols() const { |
+ return &modules_with_corrupt_symbols_; |
+ } |
ExploitabilityRating exploitability() const { return exploitability_; } |
private: |
@@ -164,6 +167,9 @@ |
// The modules that didn't have symbols when the report was processed. |
vector<const CodeModule*> modules_without_symbols_; |
+ // The modules that had corrupt symbols when the report was processed. |
+ vector<const CodeModule*> modules_with_corrupt_symbols_; |
+ |
// The exploitability rating as determined by the exploitability |
// engine. When the exploitability engine is not enabled this |
// defaults to EXPLOITABILITY_NONE. |