From 2f7d0e7884de44e18ebeb6b2003f7d0c6ddbfa46 Mon Sep 17 00:00:00 2001 From: Jack May Date: Fri, 8 Nov 2019 11:45:17 -0800 Subject: [PATCH] TODO already covered by issue (#6828) --- runtime/src/native_loader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/native_loader.rs b/runtime/src/native_loader.rs index e288a8bc5..e37423d3c 100644 --- a/runtime/src/native_loader.rs +++ b/runtime/src/native_loader.rs @@ -60,7 +60,7 @@ fn library_open(path: &PathBuf) -> std::io::Result { #[cfg(not(windows))] fn library_open(path: &PathBuf) -> std::io::Result { - // TODO linux tls bug can cause crash on dlclose(), workaround by never unloading + // Linux tls bug can cause crash on dlclose(), workaround by never unloading Library::open(Some(path), libc::RTLD_NODELETE | libc::RTLD_NOW) }