From 55ba7924e1bd7bef5fa0b8bf8b67f4bdce94a9b7 Mon Sep 17 00:00:00 2001 From: Christian Chilan Date: Fri, 27 Apr 2007 14:04:32 -0500 Subject: [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. --- src/H5Gname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Gname.c b/src/H5Gname.c index 39b1f14..8a00736 100644 --- a/src/H5Gname.c +++ b/src/H5Gname.c @@ -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) { -- cgit v0.12