diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-05-01 05:16:50 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-05-01 05:16:50 (GMT) |
commit | 65bb86375cfecac3e95ad1285db627a4a19eaabb (patch) | |
tree | 48151aa76db2a93929e682f3e7626d1b881364ca /test/cmpd_dset.c | |
parent | 59ea5ff28fb23ab4bd00f36da3268b2a0518c42c (diff) | |
download | hdf5-65bb86375cfecac3e95ad1285db627a4a19eaabb.zip hdf5-65bb86375cfecac3e95ad1285db627a4a19eaabb.tar.gz hdf5-65bb86375cfecac3e95ad1285db627a4a19eaabb.tar.bz2 |
[svn-r383] ./src/H5A.c
./src/H5F.c
./src/H5G.c
./src/H5O.c
./src/H5Osdspace.c
./src/H5T.c
./src/H5Tconv.c
./src/H5Z.c
./test/big.c
./test/cmpd_dset.c
./test/dsets.c
./test/extend.c
./test/istore.c
Now that I have a home-grown version of Purify I fixed all the
leaks in all the test files.
Diffstat (limited to 'test/cmpd_dset.c')
-rw-r--r-- | test/cmpd_dset.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/cmpd_dset.c b/test/cmpd_dset.c index 2e22206..edb3cdc 100644 --- a/test/cmpd_dset.c +++ b/test/cmpd_dset.c @@ -546,6 +546,8 @@ STEP 11: Write an array back to the middle third of the dataset to\n\ /* Write to disk */ status = H5Dwrite (dataset, s4_tid, s8_m_sid, s8_f_sid, PRESERVE, s11); assert (status>=0); + free (s11); + s11=NULL; /* Read the whole thing */ status = H5Dread (dataset, s1_tid, H5S_ALL, H5S_ALL, H5P_DEFAULT, s1); @@ -585,6 +587,7 @@ STEP 11: Write an array back to the middle third of the dataset to\n\ /* * Release resources. */ + H5Pclose (PRESERVE); H5Dclose (dataset); H5Fclose (file); |