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

Unified Diff: chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp

Issue 5372003: Display all of the CRL Distribution Point URIs in the Linux certificate viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Slight wording change Created 10 years 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/third_party/mozilla_security_manager/nsNSSCertHelper.cpp
diff --git a/chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp b/chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp
index 626da9267e4de8712f4f55434bd0e0322a73f0b8..aca4c87085c7a16000ba2f172d0fd1b18178a438 100644
--- a/chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp
+++ b/chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp
@@ -774,7 +774,9 @@ std::string ProcessCrlDistPoints(SECItem* extension_data) {
point = *points;
switch (point->distPointType) {
case generalName:
- rv += ProcessGeneralName(arena.get(), point->distPoint.fullName);
+ // generalName is a typo in upstream NSS; fullName is actually a
+ // GeneralNames (SEQUENCE OF GeneralName). See Mozilla Bug #615100.
+ rv += ProcessGeneralNames(arena.get(), point->distPoint.fullName);
break;
case relativeDistinguishedName:
rv += ProcessRDN(&point->distPoint.relativeName);
« 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