summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-12-14 00:51:48 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-12-14 00:51:48 (GMT)
commitcd7098f1b6ce49efa85245aa78cc0e2255c4065e (patch)
tree613b650c0fdfd7f9e85ff8e60611154e9ad615a8 /tools
parent496207675ded905fa1e6c88dce0e9828ac754d92 (diff)
downloadhdf5-cd7098f1b6ce49efa85245aa78cc0e2255c4065e.zip
hdf5-cd7098f1b6ce49efa85245aa78cc0e2255c4065e.tar.gz
hdf5-cd7098f1b6ce49efa85245aa78cc0e2255c4065e.tar.bz2
[svn-r3135] Purpose:
Bug Fix Description: Dataspace wasn't being freed... Platforms tested: Cray J90 (killeen)
Diffstat (limited to 'tools')
-rw-r--r--tools/h5tools.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/h5tools.c b/tools/h5tools.c
index c55c138..ed2ec14 100644
--- a/tools/h5tools.c
+++ b/tools/h5tools.c
@@ -1946,6 +1946,9 @@ h5dump_dset(FILE *stream, const h5dump_t *info, hid_t dset, hid_t _p_type,
indentlevel);
}
+ /* Close the dataspace */
+ H5Sclose(f_space);
+
done:
if (p_type != _p_type)
H5Tclose(p_type);