diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-08-12 21:19:55 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-08-12 21:19:55 (GMT) |
commit | e70fee7f362e4b57a268f2a9fe4d76f307aca19b (patch) | |
tree | c6faafd0d39cef372e0eee50183cfd0f6628ee6b /src | |
parent | 60abc27c160721720c34b3b2e691c480c43aeed2 (diff) | |
download | hdf5-e70fee7f362e4b57a268f2a9fe4d76f307aca19b.zip hdf5-e70fee7f362e4b57a268f2a9fe4d76f307aca19b.tar.gz hdf5-e70fee7f362e4b57a268f2a9fe4d76f307aca19b.tar.bz2 |
HDFFV-11127 - force RTLD_LOCAL in dlopen
Diffstat (limited to 'src')
-rw-r--r-- | src/H5PLpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLpkg.h b/src/H5PLpkg.h index dfaa4af..48208d1 100644 --- a/src/H5PLpkg.h +++ b/src/H5PLpkg.h @@ -94,7 +94,7 @@ # define H5PL_HANDLE void * /* Get a handle to a plugin library. Windows: TEXT macro handles Unicode strings */ -# define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY) +# define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY | RTLD_LOCAL) /* Get the address of a symbol in dynamic library */ # define H5PL_GET_LIB_FUNC(H,N) dlsym(H,N) |