mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
Update NSS to 3.36.4-RTM
This commit is contained in:
parent
099459dec0
commit
fe96962962
148 changed files with 5550 additions and 5825 deletions
|
|
@ -560,6 +560,7 @@ sec_pkcs7_decoder_start_decrypt(SEC_PKCS7DecoderContext *p7dcx, int depth,
|
|||
return SECSuccess;
|
||||
|
||||
no_decryption:
|
||||
PK11_FreeSymKey(bulkkey);
|
||||
/*
|
||||
* For some reason (error set already, if appropriate), we cannot
|
||||
* decrypt the content. I am not sure what exactly is the right
|
||||
|
|
@ -1031,6 +1032,11 @@ SECStatus
|
|||
SEC_PKCS7DecoderUpdate(SEC_PKCS7DecoderContext *p7dcx,
|
||||
const char *buf, unsigned long len)
|
||||
{
|
||||
if (!p7dcx) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
||||
if (p7dcx->cinfo != NULL && p7dcx->dcx != NULL) {
|
||||
PORT_Assert(p7dcx->error == 0);
|
||||
if (p7dcx->error == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue