mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-05-20 18:34:29 -05:00
fix compilation problem with OpenSSL < 1.0.0
This commit is contained in:
parent
4d458d2dd0
commit
6fa669a97e
@ -1,7 +1,7 @@
|
|||||||
|
- fix compilation problem with OpenSSL < 1.0.0
|
||||||
|
|
||||||
=== 1.6 (2014-01-21)
|
=== 1.6 (2014-01-21)
|
||||||
|
|
||||||
|
|
||||||
- add support for reading password from file
|
- add support for reading password from file
|
||||||
- add support for asking for password (on systems that
|
- add support for asking for password (on systems that
|
||||||
provide support for it)
|
provide support for it)
|
||||||
|
@ -726,7 +726,9 @@ static void cleanup_lib_state(void)
|
|||||||
EVP_cleanup();
|
EVP_cleanup();
|
||||||
CONF_modules_free();
|
CONF_modules_free();
|
||||||
CRYPTO_cleanup_all_ex_data();
|
CRYPTO_cleanup_all_ex_data();
|
||||||
|
#if OPENSSL_VERSION_NUMBER > 0x10000000
|
||||||
ERR_remove_thread_state(NULL);
|
ERR_remove_thread_state(NULL);
|
||||||
|
#endif
|
||||||
ERR_free_strings();
|
ERR_free_strings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user