mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-07-03 11:42:47 -05:00
fix compilation problem with OpenSSL < 1.0.0
This commit is contained in:
@ -726,7 +726,9 @@ static void cleanup_lib_state(void)
|
||||
EVP_cleanup();
|
||||
CONF_modules_free();
|
||||
CRYPTO_cleanup_all_ex_data();
|
||||
#if OPENSSL_VERSION_NUMBER > 0x10000000
|
||||
ERR_remove_thread_state(NULL);
|
||||
#endif
|
||||
ERR_free_strings();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user