Author: billbarker Date: Wed May 11 02:02:01 2016 New Revision: 1743290 URL: http://svn.apache.org/viewvc?rev=1743290&view=rev Log: ERR_remove_thread_state doesn't do anything in OpenSSL 1.1.x. It is possible that this needs to be reviewed for Windows, but this is the wrong place to do thread cleanup on Windows
Modified: tomcat/native/trunk/native/src/ssl.c Modified: tomcat/native/trunk/native/src/ssl.c URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/ssl.c?rev=1743290&r1=1743289&r2=1743290&view=diff ============================================================================== --- tomcat/native/trunk/native/src/ssl.c (original) +++ tomcat/native/trunk/native/src/ssl.c Wed May 11 02:02:01 2016 @@ -351,8 +351,6 @@ static apr_status_t ssl_init_cleanup(voi CRYPTO_cleanup_all_ex_data(); #if OPENSSL_VERSION_NUMBER < 0x10100000L ERR_remove_thread_state(NULL); -#else - ERR_remove_thread_state(); #endif /* Don't call ERR_free_strings here; ERR_load_*_strings only --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org