diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-10-03 19:12:23 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-10-11 02:47:30 (GMT) |
commit | e6065c44f73ae237545127f116704e83c19f60de (patch) | |
tree | 5a27762b59d3b89afc5647b524f025d6ff98809c /src/H5I.c | |
parent | c3da9fe70ecf5e3fa11a54702b2ea9884d2d68ef (diff) | |
download | hdf5-e6065c44f73ae237545127f116704e83c19f60de.zip hdf5-e6065c44f73ae237545127f116704e83c19f60de.tar.gz hdf5-e6065c44f73ae237545127f116704e83c19f60de.tar.bz2 |
Fixed the java assert issue with H5O cache corking calls.
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1109,7 +1109,8 @@ H5I_is_file_object(hid_t id) FUNC_ENTER_NOAPI(FAIL); /* Fail if the ID type is out of range */ - HDassert(id_type >= 1 && id_type < H5I_NTYPES); + if (id_type < 1 || id_type >= H5I_NTYPES) + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "ID type out of range"); /* Return TRUE if the ID is a file object (dataset, group, map, or committed * datatype), FALSE otherwise. @@ -1122,7 +1123,7 @@ H5I_is_file_object(hid_t id) H5T_t *dt = NULL; if(NULL == (dt = (H5T_t *)H5I_object(id))) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "unable to get underlying datatype struct") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "unable to get underlying datatype struct"); ret_value = H5T_is_named(dt); } @@ -1131,7 +1132,7 @@ H5I_is_file_object(hid_t id) } done: - FUNC_LEAVE_NOAPI(ret_value) + FUNC_LEAVE_NOAPI(ret_value); } /* H5I_is_file_object() */ |