TODO already covered by issue (#6828)

This commit is contained in:
Jack May 2019-11-08 11:45:17 -08:00 committed by GitHub
parent dfc4d7cb50
commit 2f7d0e7884
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ fn library_open(path: &PathBuf) -> std::io::Result<Library> {
#[cfg(not(windows))]
fn library_open(path: &PathBuf) -> std::io::Result<Library> {
// 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)
}