diff options
author | Paul Yang <yang.yang@baishancloud.com> | 2017-09-11 17:15:55 +0200 |
---|---|---|
committer | Paul Yang <yang.yang@baishancloud.com> | 2017-09-14 06:41:34 +0200 |
commit | 0822e89addcb8c6b8a135a54a503a429efbe0dbe (patch) | |
tree | d9bcd486c0ac11e5f265011b7134c1b1ff2aac03 /test | |
parent | Ensure that the requested memory size cannot exceed the limit imposed by a (diff) | |
download | openssl-0822e89addcb8c6b8a135a54a503a429efbe0dbe.tar.xz openssl-0822e89addcb8c6b8a135a54a503a429efbe0dbe.zip |
Support EVP_PKEY_meth_remove and pmeth internal cleanup
1. make app pkey methods cleanup internal
2. add EVP_PKEY_meth_remove
Fixes travis-ci failure in #4337
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4356)
Diffstat (limited to 'test')
-rw-r--r-- | test/evp_extra_test.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 221f9a6d10..f49ca80bf7 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -524,8 +524,3 @@ int setup_tests(void) ADD_ALL_TESTS(test_EVP_PKEY_check, OSSL_NELEM(keycheckdata)); return 1; } - -void cleanup_tests(void) -{ - EVP_PKEY_meth_free(custom_pmeth); -} |