diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-02-12 21:28:12 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-02-12 21:28:12 (GMT) |
commit | 747dd91641deed7742c93a550c427d22ec2c4fe6 (patch) | |
tree | 189a0d2ddb2d07aee6b245ea60472affa6a06668 /tools | |
parent | 7efcee5e4f31e00a2147f578099d1f9f38b9f9f6 (diff) | |
download | hdf5-747dd91641deed7742c93a550c427d22ec2c4fe6.zip hdf5-747dd91641deed7742c93a550c427d22ec2c4fe6.tar.gz hdf5-747dd91641deed7742c93a550c427d22ec2c4fe6.tar.bz2 |
[svn-r8198] Purpose:
small bug fix
Description:
a dataset creation property list was not closed
Solution:
closed it, calling H5Pclose(dcpl);
Platforms tested:
linux (small fix)
Misc. update:
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump/h5dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 76c7b04..2b997f1 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -5422,6 +5422,7 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t UNUSED * sset) H5Tclose(type); H5Sclose(space); + H5Pclose(dcpl); indentation(indent); printf("</%sDataset>\n", xmlnsprefix); } |