summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-02 10:29:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-02 10:29:01 (GMT)
commit7b603397c3a5f604da2ef8cdc3cab0eb27780a34 (patch)
tree5e7a1c3fc8208d3ab57c2e9fdcb258b60d33ecb2
parent4173c4b0b9152197562ad227a66137091cba9884 (diff)
downloadhdf5-7b603397c3a5f604da2ef8cdc3cab0eb27780a34.zip
hdf5-7b603397c3a5f604da2ef8cdc3cab0eb27780a34.tar.gz
hdf5-7b603397c3a5f604da2ef8cdc3cab0eb27780a34.tar.bz2
Switches memcpy to H5MM_memcpy in H5Fvfd_swmr.c
-rw-r--r--src/H5Fvfd_swmr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 5e11073..fafff01 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -1984,7 +1984,7 @@ vfd_swmr_enlarge_shadow_index(H5F_t *f)
* process of adding entries, and some callers may not update
* _entries_used immediately.
*/
- memcpy(new_mdf_idx, old_mdf_idx, sizeof(new_mdf_idx[0]) * old_mdf_idx_len);
+ H5MM_memcpy(new_mdf_idx, old_mdf_idx, sizeof(new_mdf_idx[0]) * old_mdf_idx_len);
shared->writer_index_offset = idx_addr;
ret_value = shared->mdf_idx = new_mdf_idx;