mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-29 18:27:29 +02:00
added check on error out from wc_PKCS7_EncodeAuthEnvelopedData
This commit is contained in:
@ -13624,7 +13624,14 @@ authenv_atrbend:
|
||||
}
|
||||
XFREE(decryptedKey, pkcs7->heap, DYNAMIC_TYPE_PKCS7);
|
||||
}
|
||||
#else
|
||||
if (ret < 0) {
|
||||
ForceZero(encryptedContent, (word32)encryptedContentSz);
|
||||
XFREE(encryptedContent, pkcs7->heap, DYNAMIC_TYPE_PKCS7);
|
||||
ForceZero(decryptedKey, MAX_ENCRYPTED_KEY_SZ);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef NO_PKCS7_STREAM
|
||||
if (ret != 0 && ret != WC_NO_ERR_TRACE(WC_PKCS7_WANT_READ_E)) {
|
||||
wc_PKCS7_ResetStream(pkcs7);
|
||||
|
Reference in New Issue
Block a user