diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-20 21:01:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-20 21:01:28 (GMT) |
commit | 335978f235277f12a87fb198a5fd1a0e43ce5734 (patch) | |
tree | 63d1ced7d5079d67992998b6cff21454e73ecd51 /src/H5Gdeprec.c | |
parent | 8d9964cf02cd13318029856b3becb70b8bb01f69 (diff) | |
download | hdf5-335978f235277f12a87fb198a5fd1a0e43ce5734.zip hdf5-335978f235277f12a87fb198a5fd1a0e43ce5734.tar.gz hdf5-335978f235277f12a87fb198a5fd1a0e43ce5734.tar.bz2 |
[svn-r12952] Description:
Add tests for H5Literate(), in all combinations.
Sweep up a few minor issues with H5Literate() that the tests exposed.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Gdeprec.c')
-rw-r--r-- | src/H5Gdeprec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/H5Gdeprec.c b/src/H5Gdeprec.c index b11ca88..b780b0d 100644 --- a/src/H5Gdeprec.c +++ b/src/H5Gdeprec.c @@ -733,11 +733,6 @@ H5Giterate(hid_t loc_id, const char *name, int *idx_p, H5G_iterate_t op, if((ret_value = H5G_obj_iterate(loc_id, name, H5L_INDEX_NAME, H5_ITER_INC, idx, &last_obj, &lnk_op, op_data, H5AC_ind_dxpl_id)) < 0) HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "group iteration failed") - /* Check for too high of a starting index (ex post facto :-) */ - /* (Skipping exactly as many entries as are in the group is currently an error) */ - if(idx > 0 && idx >= last_obj) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index specified") - /* Set the index we stopped at */ if(idx_p) *idx_p = (int)last_obj; |