summaryrefslogtreecommitdiffstats
path: root/src/H5Aint.c
diff options
context:
space:
mode:
authorNeil Fortner <fortnern@gmail.com>2022-11-04 12:51:21 (GMT)
committerGitHub <noreply@github.com>2022-11-04 12:51:21 (GMT)
commit66c8a487221e354d5e8e820176e9a08887caa052 (patch)
tree6e0d528633a11ad503aa8c095a4b370f05262207 /src/H5Aint.c
parent1a81091b35bd4452338cc908c2c1fdb97dc1773d (diff)
downloadhdf5-66c8a487221e354d5e8e820176e9a08887caa052.zip
hdf5-66c8a487221e354d5e8e820176e9a08887caa052.tar.gz
hdf5-66c8a487221e354d5e8e820176e9a08887caa052.tar.bz2
Fix problem with variable length attributes being accessed through multiple file handles (#2181) (#2207)
Diffstat (limited to 'src/H5Aint.c')
-rw-r--r--src/H5Aint.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c
index 0bb9576..99e81fa 100644
--- a/src/H5Aint.c
+++ b/src/H5Aint.c
@@ -723,6 +723,10 @@ H5A__write(H5A_t *attr, const H5T_t *mem_type, const void *buf)
HDassert(mem_type);
HDassert(buf);
+ /* Patch the top level file pointer in attr->shared->dt->shared->u.vlen.f if needed */
+ if (H5T_patch_vlen_file(attr->shared->dt, H5F_VOL_OBJ(attr->oloc.file)) < 0)
+ HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "can't patch VL datatype file pointer")
+
/* Get # of elements for attribute's dataspace */
if ((snelmts = H5S_GET_EXTENT_NPOINTS(attr->shared->ds)) < 0)
HGOTO_ERROR(H5E_ATTR, H5E_CANTCOUNT, FAIL, "dataspace is invalid")