diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-08-25 20:46:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-08-25 20:46:17 (GMT) |
commit | 75a293691ebe640824f001d1e6c41c058b573d61 (patch) | |
tree | 740e4310cb7616e6a23deb7c6099327ba08aec07 /src/H5Spoint.c | |
parent | 3ba4755c3331cfe7f0900e8b8e2519a9534a8600 (diff) | |
download | hdf5-75a293691ebe640824f001d1e6c41c058b573d61.zip hdf5-75a293691ebe640824f001d1e6c41c058b573d61.tar.gz hdf5-75a293691ebe640824f001d1e6c41c058b573d61.tar.bz2 |
[svn-r615] Fixed memory leaks & duplicates frees.
Diffstat (limited to 'src/H5Spoint.c')
-rw-r--r-- | src/H5Spoint.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c index 981e78f..a2fac8d 100644 --- a/src/H5Spoint.c +++ b/src/H5Spoint.c @@ -687,15 +687,18 @@ H5S_point_release (H5S_t *space) REVISION LOG --------------------------------------------------------------------------*/ hsize_t -H5S_hyper_npoints (const H5S_t *space) +H5S_point_npoints (const H5S_t *space) { - FUNC_ENTER (H5S_hyper_npoints, 0); + FUNC_ENTER (H5S_point_npoints, 0); /* Check args */ assert (space); +#ifdef QAK + printf("%s: check 1.0, nelmts=%d\n",FUNC,(int)space->select.num_elem); +#endif /* QAK */ FUNC_LEAVE (space->select.num_elem); -} /* H5S_hyper_npoints() */ +} /* H5S_point_npoints() */ /*-------------------------------------------------------------------------- NAME |