diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2010-03-05 17:51:45 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2010-03-05 17:51:45 (GMT) |
commit | 187292532027ed6abdbd8be127381491881d5a59 (patch) | |
tree | 44f62304f23b9af8ac0f0b5f86d9acc5c00e8a32 /src/H5Gdeprec.c | |
parent | 179b54da83f293948a531afd6b59e676df7a60e7 (diff) | |
download | hdf5-187292532027ed6abdbd8be127381491881d5a59.zip hdf5-187292532027ed6abdbd8be127381491881d5a59.tar.gz hdf5-187292532027ed6abdbd8be127381491881d5a59.tar.bz2 |
[svn-r18376] Purpose: Fix bug 1733
Description:
Support for expanding external links was not implemented in H5Ocopy, even though
a flag existed for H5Pset_copy_object to enable this. This patch implements
this feature.
Tested: jam, amani, linew (h5committest); Fedora
Diffstat (limited to 'src/H5Gdeprec.c')
-rw-r--r-- | src/H5Gdeprec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gdeprec.c b/src/H5Gdeprec.c index a18339b..0eb4764 100644 --- a/src/H5Gdeprec.c +++ b/src/H5Gdeprec.c @@ -250,7 +250,7 @@ H5Gcreate1(hid_t loc_id, const char *name, size_t size_hint) done: if(tmp_gcpl > 0 && tmp_gcpl != H5P_GROUP_CREATE_DEFAULT) - if(H5I_dec_ref(tmp_gcpl, TRUE) < 0) + if(H5I_dec_ref(tmp_gcpl, FALSE) < 0) HDONE_ERROR(H5E_SYM, H5E_CLOSEERROR, FAIL, "unable to release property list") if(ret_value < 0) |