Skip to content

Commit e132e64

Browse files
committed
Don't dlclose(), ever.
Apparently MKL doesn't like it when we `dlclose()` things.
1 parent 1ff294a commit e132e64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void clear_loaded_libraries() {
3232
if (lbt_config.loaded_libs[idx] != NULL) {
3333
free(lbt_config.loaded_libs[idx]->libname);
3434
free(lbt_config.loaded_libs[idx]->active_forwards);
35-
close_library(lbt_config.loaded_libs[idx]->handle);
35+
//close_library(lbt_config.loaded_libs[idx]->handle);
3636
free(lbt_config.loaded_libs[idx]);
3737
lbt_config.loaded_libs[idx] = NULL;
3838
}

0 commit comments

Comments
 (0)