mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
8
security/nss/lib/libpkix/pkix/util/pkix_tools.c
Normal file → Executable file
8
security/nss/lib/libpkix/pkix/util/pkix_tools.c
Normal file → Executable file
|
|
@ -1073,6 +1073,7 @@ pkix_CacheCert_Lookup(
|
|||
(PKIX_PL_Object *)cert,
|
||||
plContext),
|
||||
PKIX_LISTAPPENDITEMFAILED);
|
||||
*pFound = PKIX_TRUE;
|
||||
} else {
|
||||
PKIX_DECREF(selectorError);
|
||||
}
|
||||
|
|
@ -1163,6 +1164,7 @@ pkix_CacheCert_Add(
|
|||
{
|
||||
PKIX_List *cachedKeys = NULL;
|
||||
PKIX_List *cachedValues = NULL;
|
||||
PKIX_List *cachedCerts = NULL;
|
||||
PKIX_PL_Date *cacheValidUntilDate = NULL;
|
||||
PKIX_PL_X500Name *subject = NULL;
|
||||
PKIX_Error *cachedCertError = NULL;
|
||||
|
|
@ -1219,9 +1221,12 @@ pkix_CacheCert_Add(
|
|||
plContext),
|
||||
PKIX_LISTAPPENDITEMFAILED);
|
||||
|
||||
PKIX_DUPLICATE(certs, &cachedCerts, plContext,
|
||||
PKIX_OBJECTDUPLICATELISTFAILED);
|
||||
|
||||
PKIX_CHECK(PKIX_List_AppendItem
|
||||
(cachedValues,
|
||||
(PKIX_PL_Object *)certs,
|
||||
(PKIX_PL_Object *)cachedCerts,
|
||||
plContext),
|
||||
PKIX_LISTAPPENDITEMFAILED);
|
||||
|
||||
|
|
@ -1243,6 +1248,7 @@ cleanup:
|
|||
PKIX_DECREF(subject);
|
||||
PKIX_DECREF(cachedKeys);
|
||||
PKIX_DECREF(cachedValues);
|
||||
PKIX_DECREF(cachedCerts);
|
||||
PKIX_DECREF(cacheValidUntilDate);
|
||||
PKIX_DECREF(cachedCertError);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue