[svn-r22490] I took out the "return an error" line in H5Dget_offset, to match what the RM says about the function behavior.

Quincey added it some time ago without realizing it caused test errors (Issue 8072).

Tested on ostrich, MacGoblin - simple change.
This commit is contained in:
Raymond Lu 2012-06-25 17:00:06 -05:00
parent 02a0bd53e8
commit 9ded3f59ed

View File

@ -825,8 +825,6 @@ H5Dget_offset(hid_t dset_id)
/* Set return value */
ret_value = H5D__get_offset(dset);
if(!H5F_addr_defined(ret_value))
HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, HADDR_UNDEF, "unable to get space status")
done:
FUNC_LEAVE_API(ret_value)