Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(79)

Unified Diff: src/google_breakpad/processor/process_state.h

Issue 613002: Detect corrupt symbol files during minidump processing. Recover from the errors and use the good d… (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « src/google_breakpad/processor/fast_source_line_resolver.h ('k') | src/google_breakpad/processor/source_line_resolver_base.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted