mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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)
This commit is contained in:
parent
0704819592
commit
fbd659fe6f
@ -559,7 +559,7 @@ H5S_all_serialize(const H5S_t *space, uint8_t **p)
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
static herr_t
|
||||
H5S_all_deserialize(H5S_t *space, const uint8_t **p)
|
||||
H5S_all_deserialize(H5S_t *space, const uint8_t H5_ATTR_UNUSED **p)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* return value */
|
||||
|
||||
@ -573,9 +573,6 @@ H5S_all_deserialize(H5S_t *space, const uint8_t **p)
|
||||
if(H5S_select_all(space, TRUE) < 0)
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_CANTDELETE, FAIL, "can't change selection")
|
||||
|
||||
/* Advance decoding pointer */
|
||||
(*p) += 16;
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5S_all_deserialize() */
|
||||
|
@ -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() */
|
||||
|
Loading…
x
Reference in New Issue
Block a user