Skip to content
Snippets Groups Projects
Commit a8c78cbb authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

CRYPTO_cleanup_all_ex_data() is not present in all OpenSSL versions so

we need to check for its presence in the configure script
parent 3a5a6038
No related branches found
No related tags found
No related merge requests found
......@@ -437,7 +437,11 @@ void Curl_SSL_cleanup(void)
ENGINE_cleanup();
#endif
#ifdef HAVE_CRYPTO_CLEANUP_ALL_EX_DATA
/* this function was not present in 0.9.6b, but was added sometimes
later */
CRYPTO_cleanup_all_ex_data();
#endif
init_ssl=0; /* not inited any more */
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment