summaryrefslogtreecommitdiff
path: root/src/crypto/fipsmodule/digest/digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/fipsmodule/digest/digest.c')
-rw-r--r--src/crypto/fipsmodule/digest/digest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/fipsmodule/digest/digest.c b/src/crypto/fipsmodule/digest/digest.c
index 00e6d4b5..f8a0dd26 100644
--- a/src/crypto/fipsmodule/digest/digest.c
+++ b/src/crypto/fipsmodule/digest/digest.c
@@ -123,9 +123,9 @@ int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) {
}
if (out->digest == in->digest) {
- /* |md_data| will be the correct size in this case so it's removed from
- * |out| at this point so that |EVP_MD_CTX_cleanup| doesn't free it and
- * then it's reused. */
+ // |md_data| will be the correct size in this case so it's removed from
+ // |out| at this point so that |EVP_MD_CTX_cleanup| doesn't free it and
+ // then it's reused.
tmp_buf = out->md_data;
out->md_data = NULL;
}