icecat: add release icecat-140.10.1-1gnu1 for ecne
This commit is contained in:
parent
a5f93cb214
commit
ff85d7c623
1256 changed files with 63469 additions and 24141 deletions
|
|
@ -56,6 +56,15 @@ struct ScopedDelete {
|
|||
void operator()(SEC_PKCS12DecoderContext* dcx) {
|
||||
SEC_PKCS12DecoderFinish(dcx);
|
||||
}
|
||||
void operator()(SEC_PKCS7DecoderContext* dcx) {
|
||||
SEC_PKCS7ContentInfo* cinfo = SEC_PKCS7DecoderFinish(dcx);
|
||||
if (cinfo) {
|
||||
SEC_PKCS7DestroyContentInfo(cinfo);
|
||||
}
|
||||
}
|
||||
void operator()(SEC_PKCS7ContentInfo* cinfo) {
|
||||
SEC_PKCS7DestroyContentInfo(cinfo);
|
||||
}
|
||||
void operator()(NSSInitContext* init) { NSS_ShutdownContext(init); }
|
||||
};
|
||||
|
||||
|
|
@ -96,6 +105,8 @@ SCOPED(SECKEYPrivateKeyList);
|
|||
SCOPED(SECKEYPublicKey);
|
||||
SCOPED(SECMODModule);
|
||||
SCOPED(SEC_PKCS12DecoderContext);
|
||||
SCOPED(SEC_PKCS7DecoderContext);
|
||||
SCOPED(SEC_PKCS7ContentInfo);
|
||||
|
||||
#undef SCOPED
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue