aboutsummaryrefslogtreecommitdiff
path: root/src/asn1
diff options
context:
space:
mode:
authorValerii Hiora <[email protected]>2014-10-13 17:41:03 +0300
committerValerii Hiora <[email protected]>2014-10-14 08:31:42 +0300
commitdd46d1922e4706cf4c15c8cd915c1254363def8c (patch)
tree9be063d21a6ca4c90f20be1dd54d0dc3144b959f /src/asn1
parentMerge pull request #83 from jmesmon/set-cipher-list (diff)
downloadrust-openssl-dd46d1922e4706cf4c15c8cd915c1254363def8c.tar.xz
rust-openssl-dd46d1922e4706cf4c15c8cd915c1254363def8c.zip
Correct init mutexes and locking function
`libcrypto` uses locks quite intensively even without SSL. So they should be initialized before everything else to function properly in multi-threaded apps in which SSL operations are absent or delayed. Finishes #79
Diffstat (limited to 'src/asn1')
-rw-r--r--src/asn1/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asn1/mod.rs b/src/asn1/mod.rs
index 2cd4584f..89c79f74 100644
--- a/src/asn1/mod.rs
+++ b/src/asn1/mod.rs
@@ -20,6 +20,8 @@ impl Asn1Time {
}
fn new_with_period(period: u64) -> Result<Asn1Time, SslError> {
+ ffi::init();
+
let handle = unsafe {
try_ssl_null!(ffi::X509_gmtime_adj(ptr::null_mut(),
period as c_long))