summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-04-19 02:42:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-04-19 02:42:30 (GMT)
commit6ce67650fbaa78b37ccb0734fb97bf34d3770af6 (patch)
tree6bb2571d31f5c122d35a667a2c0f413d2c169240
parent062055fe604c7c25f10920ee5097fa00bfb2d905 (diff)
downloadhdf5-6ce67650fbaa78b37ccb0734fb97bf34d3770af6.zip
hdf5-6ce67650fbaa78b37ccb0734fb97bf34d3770af6.tar.gz
hdf5-6ce67650fbaa78b37ccb0734fb97bf34d3770af6.tar.bz2
[svn-r29736] Description:
Close FAPL that was leaked in zero_dims test. Tested on: MacOSX/64 10.11.4 (amazon) w/serial, parallel & production, including check-vfd (h5committest forthcoming)
-rw-r--r--test/dsets.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 4f124f2..bd683d1 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -6519,6 +6519,9 @@ test_zero_dims(hid_t file)
/* Get library format */
if(H5Pget_libver_bounds(fapl, &low, NULL) < 0) FAIL_STACK_ERROR
+ /* Close FAPL */
+ if(H5Pclose(fapl) < 0) TEST_ERROR
+
/*
* One-dimensional dataset
*/
@@ -6631,6 +6634,8 @@ test_zero_dims(hid_t file)
error:
H5E_BEGIN_TRY {
+ H5Pclose(fapl);
+
H5Pclose(dcpl);
H5Dclose(d);
H5Sclose(s);