diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-04 16:49:21 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 09:52:33 +0200 |
commit | 7b8cc9b3458ec3f18b4d4d9ca2a72b6b3e3744c8 (patch) | |
tree | da9131b97fb33b3ae50e5d79665a8bdef5eee16c /apps/ts.c | |
parent | Deprecate EVP_cleanup() and make it a no-op (diff) | |
download | openssl-7b8cc9b3458ec3f18b4d4d9ca2a72b6b3e3744c8.tar.xz openssl-7b8cc9b3458ec3f18b4d4d9ca2a72b6b3e3744c8.zip |
Deprecate OBJ_cleanup() and make it a no-op
OBJ_cleanup() should not be called expicitly - we should leave
auto-deinit to clean this up instead.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/ts.c')
-rw-r--r-- | apps/ts.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -383,7 +383,6 @@ int ts_main(int argc, char **argv) app_RAND_write_file(NULL); NCONF_free(conf); OPENSSL_free(password); - OBJ_cleanup(); return (ret); } |