From 1bc56eaed65f90e2c2351a65d5a3c54847b321e1 Mon Sep 17 00:00:00 2001
From: "Christopher J. Morrone" <morrone2@llnl.gov>
Date: Tue, 24 May 2005 18:18:12 +0000
Subject: [PATCH] Close a memory leak with EVP_MD_CTX_cleanup

---
 src/common/slurm_cred.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/common/slurm_cred.c b/src/common/slurm_cred.c
index 55c6d52a650..072500b6feb 100644
--- a/src/common/slurm_cred.c
+++ b/src/common/slurm_cred.c
@@ -1016,6 +1016,10 @@ _slurm_cred_verify_signature(slurm_cred_ctx_t ctx, slurm_cred_t cred)
 	} else
 		rc = SLURM_SUCCESS;
 
+#ifdef HAVE_EVP_MD_CTX_CLEANUP
+	/* Note: Likely memory leak if this function is absent */
+	EVP_MD_CTX_cleanup(&ectx);
+#endif
 	free_buf(buffer);
 
 	return rc;
-- 
GitLab