Chromium Code Reviews| Index: net/base/x509_certificate.cc |
| =================================================================== |
| --- net/base/x509_certificate.cc (revision 107789) |
| +++ net/base/x509_certificate.cc (working copy) |
| @@ -232,7 +232,7 @@ |
| return false; |
| SHA1FingerprintLessThan fingerprint_functor; |
| - return fingerprint_functor(lhs->fingerprint_, rhs->fingerprint_); |
| + return fingerprint_functor(lhs->chain_fingerprint_, rhs->chain_fingerprint_); |
|
wtc
2011/10/28 23:21:37
This LessThan operator is what made me calculate t
Ryan Sleevi
2011/10/28 23:32:43
The only instance I see using this is the content/
|
| } |
| X509Certificate::X509Certificate(const std::string& subject, |
| @@ -245,6 +245,7 @@ |
| valid_expiry_(expiration_date), |
| cert_handle_(NULL) { |
| memset(fingerprint_.data, 0, sizeof(fingerprint_.data)); |
| + memset(chain_fingerprint_.data, 0, sizeof(chain_fingerprint_.data)); |
| } |
| // static |