diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-19 04:30:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-19 04:30:12 (GMT) |
commit | b61ad0f7b68f974356a33b335e94e21a941c0621 (patch) | |
tree | c30308297c83b1009ffa36ed085a20f8f8c6f803 /src/H5FDmpio.c | |
parent | bd096066c3d9613fcece7450f8628a3a660b6b4f (diff) | |
download | hdf5-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.c | 1 |
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; |