[svn-r13704] Change to H5G_get_refobj_name so that H5I_get_name returns the length of the name of a dereferenced object without counting the null terminator. Tested on smirom, copper, and cobalt.

This commit is contained in:
Christian Chilan 2007-04-27 14:04:32 -05:00
parent 2b807f7fdd
commit 55ba7924e1

View File

@ -1236,7 +1236,7 @@ H5G_get_refobj_name(hid_t file, hid_t dxpl_id, const H5O_loc_t *loc,
HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "group iteration failed while looking for object name")
else if(status > 0) {
/* Set the length of the full path */
ret_value = HDstrlen(udata.container) + 1;
ret_value = HDstrlen(udata.container);
/* If there's a buffer provided, copy into it, up to the limit of its size */
if(name) {