diff options
author | Jacob Smith <jake.smith@hdfgroup.org> | 2018-09-11 21:37:14 (GMT) |
---|---|---|
committer | Jacob Smith <jake.smith@hdfgroup.org> | 2018-09-11 21:37:14 (GMT) |
commit | 602dd3ac15c9f5cd47fc78985266ce66a68a8789 (patch) | |
tree | 149023d5992abebe5a5a36e45e8132ab478a8c63 /src/H5Fint.c | |
parent | 5647dea421be9dc8429f08632aa72a8a22904292 (diff) | |
download | hdf5-602dd3ac15c9f5cd47fc78985266ce66a68a8789.zip hdf5-602dd3ac15c9f5cd47fc78985266ce66a68a8789.tar.gz hdf5-602dd3ac15c9f5cd47fc78985266ce66a68a8789.tar.bz2 |
Stash work on object header reduction code and tests.
CMake stuff is not verified.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r-- | src/H5Fint.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c index abc638a..c3fe07a 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -880,6 +880,9 @@ H5F__new(H5F_file_t *shared, unsigned flags, hid_t fcpl_id, hid_t fapl_id, H5FD_ /* intialize point of no return */ f->shared->point_of_no_return = FALSE; + /* set default value for minimizing dataset object headers */ + f->shared->crt_dset_min_ohdr_flag = FALSE; + /* Copy the file creation and file access property lists into the * new file handle. We do this early because some values might need * to change as the file is being opened. |