summaryrefslogtreecommitdiffstats
path: root/testpar/t_pmulti_dset.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 22:48:12 (GMT)
committerGitHub <noreply@github.com>2023-06-28 22:48:12 (GMT)
commitaebac33a1f290fa5065bce96bb0512317a34c283 (patch)
treecdbae6dbd65a2eb4e6f786921ee907cec92c92d3 /testpar/t_pmulti_dset.c
parent605cea4af60cfcbe03a54f697de392eec75e5a85 (diff)
downloadhdf5-aebac33a1f290fa5065bce96bb0512317a34c283.zip
hdf5-aebac33a1f290fa5065bce96bb0512317a34c283.tar.gz
hdf5-aebac33a1f290fa5065bce96bb0512317a34c283.tar.bz2
Remove HD from memory allocate/free calls (#3195)
* HDcalloc * HDfree * HDmalloc * HDrealloc
Diffstat (limited to 'testpar/t_pmulti_dset.c')
-rw-r--r--testpar/t_pmulti_dset.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testpar/t_pmulti_dset.c b/testpar/t_pmulti_dset.c
index dd9a71a..145a427 100644
--- a/testpar/t_pmulti_dset.c
+++ b/testpar/t_pmulti_dset.c
@@ -160,15 +160,15 @@ test_pmdset(size_t niter, unsigned flags)
dcpl_id[i] = -1;
/* Allocate buffers */
- if (NULL == (rbuf = (unsigned *)HDmalloc(buf_size)))
+ if (NULL == (rbuf = (unsigned *)malloc(buf_size)))
T_PMD_ERROR;
- if (NULL == (erbuf = (unsigned *)HDmalloc(buf_size)))
+ if (NULL == (erbuf = (unsigned *)malloc(buf_size)))
T_PMD_ERROR;
- if (NULL == (wbuf = (unsigned *)HDmalloc(buf_size)))
+ if (NULL == (wbuf = (unsigned *)malloc(buf_size)))
T_PMD_ERROR;
- if (NULL == (efbuf = (unsigned *)HDmalloc(buf_size)))
+ if (NULL == (efbuf = (unsigned *)malloc(buf_size)))
T_PMD_ERROR;
- if (NULL == (dset_usage = (unsigned char *)HDmalloc(max_dsets * MAX_DSET_X * MAX_DSET_Y)))
+ if (NULL == (dset_usage = (unsigned char *)malloc(max_dsets * MAX_DSET_X * MAX_DSET_Y)))
T_PMD_ERROR;
/* Initialize buffer indices */