summaryrefslogtreecommitdiffstats
path: root/src/H5Tref.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2020-01-15 23:27:48 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2020-01-15 23:27:48 (GMT)
commit024f7ba09250110c19b070c9699cfbc0f9dc2b96 (patch)
treecc3e04bdcb987e194bb481540fca17a2e2ea914a /src/H5Tref.c
parenteaa8ab277491173b66d3b08ad74920547073e677 (diff)
parenta7648879d729c1b75bd32f3a151831e9cbfbe31c (diff)
downloadhdf5-024f7ba09250110c19b070c9699cfbc0f9dc2b96.zip
hdf5-024f7ba09250110c19b070c9699cfbc0f9dc2b96.tar.gz
hdf5-024f7ba09250110c19b070c9699cfbc0f9dc2b96.tar.bz2
Merge pull request #2237 in HDFFV/hdf5 from ~JSOUMAGNE/hdf5:HDFFV-10992-fix to develop
* commit 'a7648879d729c1b75bd32f3a151831e9cbfbe31c': Add test for reference shutdown issue H5R: set app ref when incrementing ref_count on location held by reference (fix HDFFV-10992)
Diffstat (limited to 'src/H5Tref.c')
-rw-r--r--src/H5Tref.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Tref.c b/src/H5Tref.c
index f31fecf..8288912 100644
--- a/src/H5Tref.c
+++ b/src/H5Tref.c
@@ -622,8 +622,9 @@ H5T__ref_mem_write(H5VL_object_t *src_file, const void *src_buf, size_t src_size
if((file_id = H5F_get_file_id(src_file, H5I_FILE, FALSE)) < 0)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file or file object")
- /* Attach loc ID to reference and hold reference to it */
- if(H5R__set_loc_id(dst_ref, file_id, TRUE) < 0)
+ /* Attach loc ID to reference and hold reference to it, this is a
+ * user exposed reference so set app_ref to TRUE. */
+ if(H5R__set_loc_id(dst_ref, file_id, TRUE, TRUE) < 0)
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTSET, FAIL, "unable to attach location id to reference")
} /* end if */