summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-08-13 11:26:23 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-08-13 11:26:23 (GMT)
commit99875ecff433930d4bb5d63024b9f190e91065d4 (patch)
tree1cb31ab91a9319cadf2685ab05f33fff0048a399 /src
parent60abc27c160721720c34b3b2e691c480c43aeed2 (diff)
parent4e65a43f143f603d2b76f6f138d0d64432937548 (diff)
downloadhdf5-99875ecff433930d4bb5d63024b9f190e91065d4.zip
hdf5-99875ecff433930d4bb5d63024b9f190e91065d4.tar.gz
hdf5-99875ecff433930d4bb5d63024b9f190e91065d4.tar.bz2
Merge pull request #2758 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '4e65a43f143f603d2b76f6f138d0d64432937548': Spelling HDFFV-11127 - force RTLD_LOCAL in dlopen
Diffstat (limited to 'src')
-rw-r--r--src/H5PLpkg.h2
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)