| Index: net/base/x509_certificate_nss.cc
|
| diff --git a/net/base/x509_certificate_nss.cc b/net/base/x509_certificate_nss.cc
|
| index fd52608f3bab34ca39696303c106ddb0f9f09d47..a018dc09b0e110c847e361b5cebb913ceaf272c0 100644
|
| --- a/net/base/x509_certificate_nss.cc
|
| +++ b/net/base/x509_certificate_nss.cc
|
| @@ -178,6 +178,11 @@ int MapCertErrorToCertStatus(int err) {
|
| // contain the root CA certificate.
|
| void GetCertChainInfo(CERTCertList* cert_list,
|
| CertVerifyResult* verify_result) {
|
| + // NOTE: Using a NSS library before 3.12.3.1 will crash below. To see the
|
| + // NSS version currently in use:
|
| + // 1. use ldd on the chrome executable for NSS's location (ie. libnss3.so*)
|
| + // 2. use ident libnss3.so* for the library's version
|
| + DCHECK(cert_list);
|
| int i = 0;
|
| for (CERTCertListNode* node = CERT_LIST_HEAD(cert_list);
|
| !CERT_LIST_END(node, cert_list);
|
|
|