summaryrefslogtreecommitdiffstats
path: root/src/H5Snone.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-09-27 04:39:36 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-09-27 04:39:36 (GMT)
commitfbd659fe6feba18f9fd4f931535a6603ccbf763d (patch)
tree1ae3206878460119a5a3d7d26dad4c86786c8fae /src/H5Snone.c
parent0704819592498a9bcfffdeb367821a9d18888cf5 (diff)
downloadhdf5-fbd659fe6feba18f9fd4f931535a6603ccbf763d.zip
hdf5-fbd659fe6feba18f9fd4f931535a6603ccbf763d.tar.gz
hdf5-fbd659fe6feba18f9fd4f931535a6603ccbf763d.tar.bz2
[svn-r27891] Description:
Revert changes to 'all' and 'none' selections: the serialized header info is handled in the general H5S_select_deserialize() routine. Tested on: MacOSX/64 10.10.5 (amazon) w/serial & parallel (h5committest forthcoming)
Diffstat (limited to 'src/H5Snone.c')
-rw-r--r--src/H5Snone.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/H5Snone.c b/src/H5Snone.c
index 77f8af7..19d5eed 100644
--- a/src/H5Snone.c
+++ b/src/H5Snone.c
@@ -527,7 +527,7 @@ H5S_none_serialize(const H5S_t *space, uint8_t **p)
REVISION LOG
--------------------------------------------------------------------------*/
static herr_t
-H5S_none_deserialize(H5S_t *space, const uint8_t **p)
+H5S_none_deserialize(H5S_t *space, const uint8_t H5_ATTR_UNUSED **p)
{
herr_t ret_value = SUCCEED; /* return value */
@@ -541,9 +541,6 @@ H5S_none_deserialize(H5S_t *space, const uint8_t **p)
if(H5S_select_none(space) < 0)
HGOTO_ERROR(H5E_DATASPACE, H5E_CANTDELETE, FAIL, "can't change selection")
- /* Advance decoding pointer */
- (*p) += 16;
-
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* H5S_none_deserialize() */