Index: net/cert/crl_set.cc |
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc |
index 0898557f81bd7aa808c5907024425bbfcc9e2d28..2d4f5c3331ceada7d2b4d892a689ed22049e2ec8 100644 |
--- a/net/cert/crl_set.cc |
+++ b/net/cert/crl_set.cc |
@@ -44,11 +44,11 @@ CRLSet::Result CRLSet::CheckSerial( |
while (serial.size() > 1 && serial[0] == 0x00) |
serial.remove_prefix(1); |
- base::hash_map<std::string, size_t>::const_iterator i = |
+ base::hash_map<std::string, size_t>::const_iterator crl_index = |
crls_index_by_issuer_.find(issuer_spki_hash.as_string()); |
- if (i == crls_index_by_issuer_.end()) |
+ if (crl_index == crls_index_by_issuer_.end()) |
return UNKNOWN; |
- const std::vector<std::string>& serials = crls_[i->second].second; |
+ const std::vector<std::string>& serials = crls_[crl_index->second].second; |
for (std::vector<std::string>::const_iterator i = serials.begin(); |
i != serials.end(); ++i) { |