[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:
Quincey Koziol 2015-09-26 23:39:36 -05:00
parent 0704819592
commit fbd659fe6f
2 changed files with 2 additions and 8 deletions

View File

@ -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() */

View File

@ -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() */