summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-10-16 01:19:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-10-16 01:19:09 (GMT)
commit31683703d9bf394cef27805c50fc89efa29361b9 (patch)
treef6a1b03413e666625207930cd2b687f5b997ef8a /src/H5Dint.c
parent23a31f45b2d0c3885fd09966a3adb0a43e292445 (diff)
downloadhdf5-31683703d9bf394cef27805c50fc89efa29361b9.zip
hdf5-31683703d9bf394cef27805c50fc89efa29361b9.tar.gz
hdf5-31683703d9bf394cef27805c50fc89efa29361b9.tar.bz2
[svn-r28092] Description:
Merge the storage message back into the layout message. Tested on: MacOSX/64 10.10.5 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 9b748e7..a4caf3b 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -2823,9 +2823,7 @@ H5D__format_convert(H5D_t *dataset, hid_t dxpl_id)
(dataset->shared->layout.storage.u.chunk.ops->dest)(&idx_info) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTFREE, FAIL, "unable to release chunk index info")
- /* Delete the "storage" and "layout" messages */
- if(H5O_msg_remove(&dataset->oloc, H5O_STORAGE_ID, H5O_ALL, TRUE, dxpl_id) < 0)
- HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "unable to delete storage message")
+ /* Delete the "layout" message */
if(H5O_msg_remove(&dataset->oloc, H5O_LAYOUT_ID, H5O_ALL, TRUE, dxpl_id) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "unable to delete layout message")