summaryrefslogtreecommitdiffstats
path: root/testpar/t_filter_read.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2013-10-31 07:44:00 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2013-10-31 07:44:00 (GMT)
commit0aa06db0a4e5d01b752fecf9e33d4db302ee3abc (patch)
tree5bd2d0032760de036383fa28004a89972265e52d /testpar/t_filter_read.c
parent89f2019ecf51f46a99a1d08149d633655c1e7dec (diff)
downloadhdf5-0aa06db0a4e5d01b752fecf9e33d4db302ee3abc.zip
hdf5-0aa06db0a4e5d01b752fecf9e33d4db302ee3abc.tar.gz
hdf5-0aa06db0a4e5d01b752fecf9e33d4db302ee3abc.tar.bz2
[svn-r24380] The parallel test code now uses HDfree, HDmalloc, and HDcalloc
exclusively. Part of the preparation for a fix for HDFFV-8551. Tested on: 32-bit LE linux (jam) w/ parallel and Fortran. There are no behavior changes, so testing was minimal.
Diffstat (limited to 'testpar/t_filter_read.c')
-rw-r--r--testpar/t_filter_read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_filter_read.c b/testpar/t_filter_read.c
index f38b30e..7e782ce 100644
--- a/testpar/t_filter_read.c
+++ b/testpar/t_filter_read.c
@@ -186,8 +186,8 @@ filter_read_internal(const char *filename, hid_t dcpl,
hrc = H5Fclose (file);
VRFY(hrc>=0, "H5Fclose");
- free(points);
- free(check);
+ HDfree(points);
+ HDfree(check);
MPI_Barrier(MPI_COMM_WORLD);
}