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

Unified Diff: nss/lib/pki/pki3hack.c

Issue 16132005: Allow NSS to be built with NO_NSPR_10_SUPPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 7 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 | « nss/lib/pkcs7/secmime.c ('k') | nss/lib/smime/cmslocal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/pki/pki3hack.c
===================================================================
--- nss/lib/pki/pki3hack.c (revision 203524)
+++ nss/lib/pki/pki3hack.c (working copy)
@@ -228,7 +228,7 @@
SECItem secDER;
SECItem secKey = { 0 };
SECStatus secrv;
- PRArenaPool *arena;
+ PLArenaPool *arena;
SECITEM_FROM_NSSITEM(&secDER, der);
@@ -550,7 +550,7 @@
if (cert) {
PRBool freeSlot = cert->ownSlot;
PK11SlotInfo *slot = cert->slot;
- PRArenaPool *arena = cert->arena;
+ PLArenaPool *arena = cert->arena;
/* zero cert before freeing. Any stale references to this cert
* after this point will probably cause an exception. */
PORT_Memset(cert, 0, sizeof *cert);
@@ -585,7 +585,7 @@
}
static CERTCertTrust *
-cert_trust_from_stan_trust(NSSTrust *t, PRArenaPool *arena)
+cert_trust_from_stan_trust(NSSTrust *t, PLArenaPool *arena)
{
CERTCertTrust *rvTrust;
unsigned int client;
« no previous file with comments | « nss/lib/pkcs7/secmime.c ('k') | nss/lib/smime/cmslocal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698