diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-05-20 15:57:20 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-05-20 15:57:20 (GMT) |
commit | 78931a0d83bc6447d123413604f76cc374aaeca0 (patch) | |
tree | 55563a74e915b7127ec65f9e11aaadf99925c779 /src/H5Dint.c | |
parent | d701855cc128336ef3a18b930634639b7133f24f (diff) | |
download | hdf5-78931a0d83bc6447d123413604f76cc374aaeca0.zip hdf5-78931a0d83bc6447d123413604f76cc374aaeca0.tar.gz hdf5-78931a0d83bc6447d123413604f76cc374aaeca0.tar.bz2 |
Brought the dsets test in line with develop. Brings over the fix
for 0-size dataset metadata allocation.
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 696c7d0..8f2178d 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -2270,7 +2270,7 @@ H5D__alloc_storage(const H5D_io_info_t *io_info, H5D_time_alloc_t time_alloc, * We assume that external storage is already * allocated by the caller, or at least will be before I/O is performed. */ - if(!(H5S_NULL == H5S_GET_EXTENT_TYPE(dset->shared->space) || dset->shared->dcpl_cache.efl.nused > 0)) { + if(!(0 == H5S_GET_EXTENT_NPOINTS(dset->shared->space) || dset->shared->dcpl_cache.efl.nused > 0)) { /* Get a pointer to the dataset's layout information */ layout = &(dset->shared->layout); |