summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpio.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-12-19 04:30:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-12-19 04:30:12 (GMT)
commitb61ad0f7b68f974356a33b335e94e21a941c0621 (patch)
treec30308297c83b1009ffa36ed085a20f8f8c6f803 /src/H5FDmpio.c
parentbd096066c3d9613fcece7450f8628a3a660b6b4f (diff)
downloadhdf5-b61ad0f7b68f974356a33b335e94e21a941c0621.zip
hdf5-b61ad0f7b68f974356a33b335e94e21a941c0621.tar.gz
hdf5-b61ad0f7b68f974356a33b335e94e21a941c0621.tar.bz2
Clear driver properties before returning them to application.
Move write_tracking and page_size properties to be inside the core VFD's driver properties.
Diffstat (limited to 'src/H5FDmpio.c')
-rw-r--r--src/H5FDmpio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c
index 87f8b6a..c04906e 100644
--- a/src/H5FDmpio.c
+++ b/src/H5FDmpio.c
@@ -319,6 +319,7 @@ H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info)
HGOTO_ERROR(H5E_PLIST, H5E_BADTYPE, FAIL, "not a valid communicator")
/* Initialize driver specific properties */
+ HDmemset(&fa, 0, sizeof(H5FD_mpio_fapl_t));
fa.comm = comm;
fa.info = info;