aboutsummaryrefslogtreecommitdiff
path: root/rust/bssl-sys/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/bssl-sys/src/lib.rs')
-rw-r--r--rust/bssl-sys/src/lib.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/rust/bssl-sys/src/lib.rs b/rust/bssl-sys/src/lib.rs
index 1d43e14..2d313af 100644
--- a/rust/bssl-sys/src/lib.rs
+++ b/rust/bssl-sys/src/lib.rs
@@ -55,8 +55,6 @@ pub use { ERR_GET_LIB_RUST as ERR_GET_LIB,
CBS_len_RUST as CBS_len };
pub fn init() {
- // Safety: `CRYPTO_library_init` may be called multiple times and concurrently.
- unsafe {
- CRYPTO_library_init();
- }
+ // This function does nothing.
+ // TODO(davidben): Remove rust-openssl's dependency on this and remove this.
}