summaryrefslogtreecommitdiff
path: root/src/crypto/cipher_extra/aead_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/cipher_extra/aead_test.cc')
-rw-r--r--src/crypto/cipher_extra/aead_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/cipher_extra/aead_test.cc b/src/crypto/cipher_extra/aead_test.cc
index a699890a..a40d673c 100644
--- a/src/crypto/cipher_extra/aead_test.cc
+++ b/src/crypto/cipher_extra/aead_test.cc
@@ -393,14 +393,14 @@ TEST_P(PerAEADTest, CleanupAfterInitFailure) {
9999 /* a silly tag length to trigger an error */, NULL /* ENGINE */));
ERR_clear_error();
- /* Running a second, failed _init should not cause a memory leak. */
+ // Running a second, failed _init should not cause a memory leak.
ASSERT_FALSE(EVP_AEAD_CTX_init(
&ctx, aead(), key, key_len,
9999 /* a silly tag length to trigger an error */, NULL /* ENGINE */));
ERR_clear_error();
- /* Calling _cleanup on an |EVP_AEAD_CTX| after a failed _init should be a
- * no-op. */
+ // Calling _cleanup on an |EVP_AEAD_CTX| after a failed _init should be a
+ // no-op.
EVP_AEAD_CTX_cleanup(&ctx);
}