diff --git a/src/dynlib.c b/src/dynlib.c index 1338e9109c91a..d29bdb1e86d0a 100644 --- a/src/dynlib.c +++ b/src/dynlib.c @@ -270,6 +270,7 @@ dynlib_close (dynlib_handle_ptr h) dynlib_handle_ptr dynlib_open (const char *path) { + dlopen (path, RTLD_LAZY); return dlopen (path, RTLD_LAZY); }