diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2015-04-21 15:07:21 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2015-04-21 15:07:21 (GMT) |
commit | b31103b33225c39fe0ddaa0c3fa1cdaae64f7cbc (patch) | |
tree | 2c43ebeb7480b73c9958fe7bf0197e0af6d0192c | |
parent | f53cfbe9d66c87b414bb759b91d7c32eb28fa88f (diff) | |
download | hdf5-b31103b33225c39fe0ddaa0c3fa1cdaae64f7cbc.zip hdf5-b31103b33225c39fe0ddaa0c3fa1cdaae64f7cbc.tar.gz hdf5-b31103b33225c39fe0ddaa0c3fa1cdaae64f7cbc.tar.bz2 |
[svn-r26862] Fix bug in H5D__get_storage_size where it would issue an error unnecessarily for
virtual datasets.
Tested: ummon
-rw-r--r-- | src/H5Dint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index a36b8b3..d7ef991 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -1957,6 +1957,7 @@ H5D__get_storage_size(H5D_t *dset, hid_t dxpl_id, hsize_t *storage_size) case H5D_VIRTUAL: /* Just set to 0 until private data is implemented VDSINC */ *storage_size = 0; + break; case H5D_LAYOUT_ERROR: case H5D_NLAYOUTS: |