[openssl] OpenSSL_1_1_1-stable update
nic.tuv at gmail.com
nic.tuv at gmail.com
Wed Mar 13 19:02:03 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 45956011b9a5b0e7a2170d4c4f5f866d00702450 (commit)
from cd61ad38b54d22a3d17db9d679c24d9a602cb5d8 (commit)
- Log -----------------------------------------------------------------
commit 45956011b9a5b0e7a2170d4c4f5f866d00702450
Author: Nicola Tuveri <nic.tuv at gmail.com>
Date: Wed Mar 13 11:38:40 2019 +0200
Fix memory leak in ectest
Fixes #8462
(cherry picked from commit 81d61a62faa809e6c51f5fc2b86fb0d31146fd5e)
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8466)
-----------------------------------------------------------------------
Summary of changes:
test/ectest.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/test/ectest.c b/test/ectest.c
index afe8615..9cd8409 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -1466,6 +1466,7 @@ static int underflow_test(void)
BN_CTX_end(ctx);
EC_POINT_free(P);
EC_POINT_free(Q);
+ EC_POINT_free(R);
EC_GROUP_free(grp);
BN_CTX_free(ctx);
More information about the openssl-commits
mailing list