[openssl-commits] [openssl] master update
Kurt Roeckx
kurt at openssl.org
Sat Feb 6 20:45:46 UTC 2016
The branch master has been updated
via 026e012b3d1aadb754e40b52250ea0d3be4eff6d (commit)
from d1b105827aef49ae16fd2d321bafa92b1a6489c9 (commit)
- Log -----------------------------------------------------------------
commit 026e012b3d1aadb754e40b52250ea0d3be4eff6d
Author: Kurt Roeckx <kurt at roeckx.be>
Date: Sat Feb 6 20:31:15 2016 +0100
Fix memory leak in dtlsv1listentest
Reviewed-by: Rich Salz <rsalz at openssl.org>
MR: #1879
-----------------------------------------------------------------------
Summary of changes:
test/dtlsv1listentest.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/test/dtlsv1listentest.c b/test/dtlsv1listentest.c
index 5069dd5..3e3939f 100644
--- a/test/dtlsv1listentest.c
+++ b/test/dtlsv1listentest.c
@@ -460,6 +460,7 @@ int main(void)
SSL_free(ssl);
SSL_CTX_free(ctx);
BIO_free(inbio);
+ OPENSSL_free(peer);
/* Unitialise libssl */
#ifndef OPENSSL_NO_ENGINE
ENGINE_cleanup();
More information about the openssl-commits
mailing list