mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57: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
|
|
@ -1045,10 +1045,15 @@ CERT_FindSMimeProfile(CERTCertificate *cert)
|
|||
nssSMIMEProfile *stanProfile;
|
||||
stanProfile = nssCryptoContext_FindSMIMEProfileForCertificate(cc, c);
|
||||
if (stanProfile) {
|
||||
rvItem =
|
||||
SECITEM_AllocItem(NULL, NULL, stanProfile->profileData->size);
|
||||
if (rvItem) {
|
||||
rvItem->data = stanProfile->profileData->data;
|
||||
if (stanProfile->profileData) {
|
||||
rvItem =
|
||||
SECITEM_AllocItem(NULL, NULL,
|
||||
stanProfile->profileData->size);
|
||||
if (rvItem) {
|
||||
PORT_Memcpy(rvItem->data,
|
||||
stanProfile->profileData->data,
|
||||
stanProfile->profileData->size);
|
||||
}
|
||||
}
|
||||
nssSMIMEProfile_Destroy(stanProfile);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue