From 5108468482c34ecb70109fe8060f74ed65c45261 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 19 Apr 2016 09:25:49 -0500 Subject: [svn-r29743] Description: Close another FAPL in the test_missing_chunk() routine. Tested on: MacOSX/64 10.11.4 (amazon) w/serial, parallel & production (w/check-vfd) (h5committest forthcoming) --- test/dsets.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/dsets.c b/test/dsets.c index e095875..2ff8dda 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -6704,6 +6704,9 @@ test_missing_chunk(hid_t file) /* Get library format */ if(H5Pget_libver_bounds(fapl, &low, NULL) < 0) TEST_ERROR; + /* Close FAPL */ + if(H5Pclose(fapl) < 0) TEST_ERROR + /* Initialize data for 1-D dataset */ for(u = 0; u < MISSING_CHUNK_DIM; u++) { wdata[u] = (int)u; @@ -6829,6 +6832,8 @@ test_missing_chunk(hid_t file) error: H5E_BEGIN_TRY { + H5Pclose(fapl); + H5Pclose(dcpl); H5Pclose(dcpl2); H5Dclose(d); -- cgit v0.12