[openssl] master update
nic.tuv at gmail.com
nic.tuv at gmail.com
Wed Mar 13 18:23:16 UTC 2019
The branch master has been updated
via 81d61a62faa809e6c51f5fc2b86fb0d31146fd5e (commit)
from d3620841cc39aaa4a3d75ea32e94ccd110b5bef4 (commit)
- Log -----------------------------------------------------------------
commit 81d61a62faa809e6c51f5fc2b86fb0d31146fd5e
Author: Nicola Tuveri <nic.tuv at gmail.com>
Date: Wed Mar 13 11:38:40 2019 +0200
Fix memory leak in ectest
Fixes #8462
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 d2ad377..59c7e99 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -1503,6 +1503,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