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

Unified Diff: nss/lib/pkcs7/certread.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/pk11wrap/secmodti.h ('k') | nss/lib/pkcs7/p7common.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/pkcs7/certread.c
===================================================================
--- nss/lib/pkcs7/certread.c (revision 203524)
+++ nss/lib/pkcs7/certread.c (working copy)
@@ -123,7 +123,7 @@
SECStatus rv;
SECItem **certs;
int count;
- PRArenaPool *arena;
+ PLArenaPool *arena;
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
if ( arena == NULL ) {
@@ -177,7 +177,7 @@
SECItem **certs;
int count;
SECItem **rawCerts = NULL;
- PRArenaPool *arena;
+ PLArenaPool *arena;
ContentInfo contentInfo;
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
@@ -499,7 +499,7 @@
}
typedef struct {
- PRArenaPool *arena;
+ PLArenaPool *arena;
SECItem cert;
} collect_args;
« no previous file with comments | « nss/lib/pk11wrap/secmodti.h ('k') | nss/lib/pkcs7/p7common.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698