mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 19:54:40 +02:00
test_wolfssl_EVP_aes_gcm: fix for mem fail testing
Fix test to not leak when memory allocation failure testing. When not supporting AES-GCM streaming, allocation failures occur. Always call cleanup.
This commit is contained in:
@@ -77198,7 +77198,7 @@ static int test_wolfssl_EVP_aes_gcm(void)
|
|||||||
ciphertxtSz += len;
|
ciphertxtSz += len;
|
||||||
ExpectIntEQ(1, EVP_CIPHER_CTX_ctrl(&en[i], EVP_CTRL_GCM_GET_TAG,
|
ExpectIntEQ(1, EVP_CIPHER_CTX_ctrl(&en[i], EVP_CTRL_GCM_GET_TAG,
|
||||||
AES_BLOCK_SIZE, tag));
|
AES_BLOCK_SIZE, tag));
|
||||||
ExpectIntEQ(wolfSSL_EVP_CIPHER_CTX_cleanup(&en[i]), 1);
|
wolfSSL_EVP_CIPHER_CTX_cleanup(&en[i]);
|
||||||
|
|
||||||
EVP_CIPHER_CTX_init(&de[i]);
|
EVP_CIPHER_CTX_init(&de[i]);
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
@@ -77283,7 +77283,7 @@ static int test_wolfssl_EVP_aes_gcm(void)
|
|||||||
ExpectIntEQ(0, EVP_DecryptFinal_ex(&de[i], decryptedtxt, &len));
|
ExpectIntEQ(0, EVP_DecryptFinal_ex(&de[i], decryptedtxt, &len));
|
||||||
ExpectIntEQ(0, len);
|
ExpectIntEQ(0, len);
|
||||||
|
|
||||||
ExpectIntEQ(wolfSSL_EVP_CIPHER_CTX_cleanup(&de[i]), 1);
|
wolfSSL_EVP_CIPHER_CTX_cleanup(&de[i]);
|
||||||
}
|
}
|
||||||
#endif /* OPENSSL_EXTRA && !NO_AES && HAVE_AESGCM */
|
#endif /* OPENSSL_EXTRA && !NO_AES && HAVE_AESGCM */
|
||||||
return EXPECT_RESULT();
|
return EXPECT_RESULT();
|
||||||
|
Reference in New Issue
Block a user