Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: chrome/browser/diagnostics/recon_diagnostics.cc

Issue 6171004: Fix minor CHECKED_RETURN Coverity complaint in code I added to the --diagnost... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/diagnostics/recon_diagnostics.cc
===================================================================
--- chrome/browser/diagnostics/recon_diagnostics.cc (revision 70876)
+++ chrome/browser/diagnostics/recon_diagnostics.cc (working copy)
@@ -97,7 +97,8 @@
string16 failures = ASCIIToUTF16("Possibly conflicting modules:");
DictionaryValue* dictionary;
for (size_t i = 0; i < list->GetSize(); ++i) {
- list->GetDictionary(i, &dictionary);
+ if (!list->GetDictionary(i, &dictionary))
+ RecordFailure(ASCIIToUTF16("Dictionary lookup failed"));
int status;
string16 location;
string16 name;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698