summaryrefslogtreecommitdiffstats
path: root/src/H5Gname.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-03 15:15:17 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-03 15:15:17 (GMT)
commit2ef26248c5f09451eb427bb765301539bc0e3f6b (patch)
treec0229aabdc0a95a0dfb3bc6d4c2a0fc171cc175b /src/H5Gname.c
parent8c5e848bd417ee7374d077bedb5ec85e7908368a (diff)
downloadhdf5-2ef26248c5f09451eb427bb765301539bc0e3f6b.zip
hdf5-2ef26248c5f09451eb427bb765301539bc0e3f6b.tar.gz
hdf5-2ef26248c5f09451eb427bb765301539bc0e3f6b.tar.bz2
[svn-r12854] Description:
Clean up some more function name problems and other compiler warnings. Tested on: FreeBSD/32 4.11 (sleipnir)
Diffstat (limited to 'src/H5Gname.c')
-rw-r--r--src/H5Gname.c35
1 files changed, 19 insertions, 16 deletions
diff --git a/src/H5Gname.c b/src/H5Gname.c
index a3c6bd3..adb1be5 100644
--- a/src/H5Gname.c
+++ b/src/H5Gname.c
@@ -436,37 +436,40 @@ H5G_get_name(hid_t id, char *name/*out*/, size_t size)
{
H5G_loc_t loc; /* Object location */
ssize_t ret_value = FAIL;
-
FUNC_ENTER_NOAPI(H5G_get_name, FAIL)
/* get object location */
if(H5G_loc(id, &loc) >= 0) {
- size_t len = 0;
+ ssize_t len;
if(loc.path->user_path_r != NULL && loc.path->obj_hidden == 0) {
len = H5RS_len(loc.path->user_path_r);
if(name) {
- HDstrncpy(name, H5RS_get_str(loc.path->user_path_r), MIN(len + 1, size));
- if(len >= size)
- name[size-1] = '\0';
+ HDstrncpy(name, H5RS_get_str(loc.path->user_path_r), MIN((size_t)(len + 1), size));
+ if((size_t)len >= size)
+ name[size - 1] = '\0';
} /* end if */
- }
- else
- {
+ } /* end if */
+ else {
hid_t file;
+ /* Retrieve file ID for name search */
if((file = H5I_get_file_id(id)) < 0)
- HGOTO_ERROR(H5E_ATOM, H5E_CANTGET, FAIL, "can't retrieve file ID")
+ HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't retrieve file ID")
-
- len = H5G_get_refobj_name((loc.oloc)->addr, file, name, size);
+ /* Search for name of object */
+ if((len = H5G_get_refobj_name((loc.oloc)->addr, file, name, size)) < 0)
+ HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't determine name")
- H5Fclose(file);
- }
+ /* Close file ID used for search */
+ if(H5Fclose(file) < 0)
+ HGOTO_ERROR(H5E_SYM, H5E_CANTCLOSEFILE, FAIL, "can't determine name")
+ } /* end else */
+
/* Set return value */
- ret_value = (ssize_t)len;
+ ret_value = len;
} /* end if */
done:
@@ -1139,7 +1142,7 @@ H5G_free_ref_path_info(void *item, void UNUSED *key, void UNUSED *operator_data/
{
ref_path_node_t *node = (ref_path_node_t *)item;
- FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5G_free_ref_path_table)
+ FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5G_free_ref_path_info)
H5MM_xfree(node->path);
H5MM_xfree(node);
@@ -1342,5 +1345,5 @@ done:
H5MM_xfree(iter.container);
FUNC_LEAVE_NOAPI(ret_value)
-}
+} /* end H5G_get_refobj_name() */