diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-05 16:31:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-05 16:31:02 (GMT) |
commit | 22f38d627e0f75ca92731ef8df75b2df3ad8aa85 (patch) | |
tree | 253fcf1b8a5675ce8ef45def44af17c7840e79e3 /src/H5A.c | |
parent | 3ed57b880ab78490678eb1824b623beb1930eeb5 (diff) | |
download | hdf5-22f38d627e0f75ca92731ef8df75b2df3ad8aa85.zip hdf5-22f38d627e0f75ca92731ef8df75b2df3ad8aa85.tar.gz hdf5-22f38d627e0f75ca92731ef8df75b2df3ad8aa85.tar.bz2 |
[svn-r6055] Purpose:
New feature
Description:
Add support for scalar dataspaces in parallel I/O.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Also, FreeBSD 4.7 (sleipnir) serial & parallel
Misc. update:
Update release_docs/RELEASE for bug fixes, new features, etc.
Diffstat (limited to 'src/H5A.c')
-rw-r--r-- | src/H5A.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1181,7 +1181,7 @@ H5A_rename(H5G_entry_t *ent, char *old_name, char *new_name) { int seq, idx=FAIL; /* Index of attribute being querried */ H5A_t *found_attr; /* Attribute with OLD_NAME */ - herr_t ret_value; /* Return value */ + herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(H5A_rename, FAIL); @@ -1227,7 +1227,7 @@ H5A_rename(H5G_entry_t *ent, char *old_name, char *new_name) HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to update attribute header messages"); /* Close the attribute */ - if(found_attr) H5A_close(found_attr); + H5A_close(found_attr); done: FUNC_LEAVE(ret_value); |