diff --git a/httplib.h b/httplib.h index 5c1ad8b..dea28c8 100644 --- a/httplib.h +++ b/httplib.h @@ -69,6 +69,7 @@ typedef int socket_t; #ifdef CPPHTTPLIB_OPENSSL_SUPPORT #include +#include #endif #ifdef CPPHTTPLIB_ZLIB_SUPPORT @@ -2368,6 +2369,10 @@ public: SSL_load_error_strings(); SSL_library_init(); } + + ~SSLInit() { + ERR_free_strings(); + } }; static SSLInit sslinit_;