summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-06-19 16:51:17 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-06-19 16:51:17 (GMT)
commit5c865bd10603dda4139995c1918d9e3f1df53026 (patch)
treebcaef6ad474a13f7097d978d017e09156e974382 /src
parent562cd7f3ab9fc929cda5772e61195c4ffcff88c0 (diff)
parent4d20db43bea4bc4588b20abebef5b0d043dcf31d (diff)
downloadhdf5-5c865bd10603dda4139995c1918d9e3f1df53026.zip
hdf5-5c865bd10603dda4139995c1918d9e3f1df53026.tar.gz
hdf5-5c865bd10603dda4139995c1918d9e3f1df53026.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '4d20db43bea4bc4588b20abebef5b0d043dcf31d': Fixed a problem in the ohdr test where hard-coded strings passed to H5Awrite() triggered -fsanitize failures.
Diffstat (limited to 'src')
-rw-r--r--src/H5Aint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c
index 2126444..808d9b3 100644
--- a/src/H5Aint.c
+++ b/src/H5Aint.c
@@ -771,7 +771,7 @@ H5A__write(H5A_t *attr, const H5T_t *mem_type, const void *buf)
if(NULL == (attr->shared->data = H5FL_BLK_MALLOC(attr_buf, dst_type_size * nelmts)))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
- /* Copy the attribute data into the user's buffer */
+ /* Copy the attribute data into the attribute data buffer */
H5MM_memcpy(attr->shared->data, buf, (dst_type_size * nelmts));
} /* end else */