summaryrefslogtreecommitdiffstats
path: root/src/H5Gdeprec.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2010-03-05 17:53:23 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2010-03-05 17:53:23 (GMT)
commitaf527abf6c2d0586fef45e9525b8718c36e1c0a7 (patch)
tree0e0e2661d3e7c56c428ba00b8ae5a7022b96b41e /src/H5Gdeprec.c
parent3b921a4b4f651ec07b69502b3d42ab5799e0038a (diff)
downloadhdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.zip
hdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.tar.gz
hdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.tar.bz2
[svn-r18377] 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.c2
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)