summaryrefslogtreecommitdiffstats
path: root/src/H5VLint.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-03-18 20:58:02 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:31:56 (GMT)
commit4cfafa10d55c3a1067174d152c8546bfebae03c3 (patch)
treea6f3de34b12f07b063e7e34776dabfd43015a5d8 /src/H5VLint.c
parentc7fd077ffb7fff2fb21fa20acca54622ffa03617 (diff)
downloadhdf5-4cfafa10d55c3a1067174d152c8546bfebae03c3.zip
hdf5-4cfafa10d55c3a1067174d152c8546bfebae03c3.tar.gz
hdf5-4cfafa10d55c3a1067174d152c8546bfebae03c3.tar.bz2
Fix shutdown errors when using the HDF5_VOL_CONNECTOR environment
variable to set a dynamically loaded plugin as the default VOL connector. Fixes HDFFV-11057
Diffstat (limited to 'src/H5VLint.c')
-rw-r--r--src/H5VLint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLint.c b/src/H5VLint.c
index 6572faa..861629f 100644
--- a/src/H5VLint.c
+++ b/src/H5VLint.c
@@ -273,7 +273,7 @@ H5VL_term_package(void)
else {
if(H5I_nmembers(H5I_VOL) > 0) {
/* Unregister all VOL connectors */
- (void)H5I_clear_type(H5I_VOL, FALSE, FALSE);
+ (void)H5I_clear_type(H5I_VOL, TRUE, FALSE);
n++;
} /* end if */
else {