]> tinc-vpn.org Git - tinc/commitdiff
Don't call OPENSSL_cleanup().
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 21 Jul 2021 09:54:34 +0000 (11:54 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 21 Jul 2021 09:54:34 +0000 (11:54 +0200)
Some versions of LibreSSL don't have this function, even if they support
the rest of the OpenSSL 1.1 API. It also doesn't seem to affect the
output of Valgrind, so it looks like it's not necessary at all.

src/openssl/crypto.c

index 7e020e61f9150ed6d9863f7c06191fb63fdf7421..bf9fe08a657f63464b6003cc320a4b34ff0d2607 100644 (file)
@@ -20,7 +20,6 @@
 #include "../system.h"
 
 #include <openssl/rand.h>
-#include <openssl/evp.h>
 #include <openssl/engine.h>
 
 #include "../crypto.h"
@@ -103,6 +102,5 @@ void crypto_init(void) {
 }
 
 void crypto_exit(void) {
-       OPENSSL_cleanup();
        random_exit();
 }