diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2011-03-21 23:02:31 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2011-03-21 23:02:31 (GMT) |
commit | f92d2371ffce9ec664833187cadb0223fa1dc1c2 (patch) | |
tree | 0de52b34d30672f563ece49177cc117d91127005 /tools/lib/h5tools.h | |
parent | 0fcb094698374a1c5eb218030d14ca3071c049ca (diff) | |
download | hdf5-f92d2371ffce9ec664833187cadb0223fa1dc1c2.zip hdf5-f92d2371ffce9ec664833187cadb0223fa1dc1c2.tar.gz hdf5-f92d2371ffce9ec664833187cadb0223fa1dc1c2.tar.bz2 |
[svn-r20285] Purpose:
Improve the previous fix for Bug 2216 - GMQS: h5diff - memory leak when
compares vlen string in dataset or attributes
Description:
Related to the previous checkin r20270 and r20266.
Improve h5tools_detect_vlen() code for better performance. H5Tdetect_class
already recusive on given type so don't need to be part of recusive call
again. Also improve error handlings in h5tools_detect_vlen and
h5tools_detect_vlen_str functions.
Also updated h5ls and h5dump code accordingly.
Tested:
jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Cmake - jam
Diffstat (limited to 'tools/lib/h5tools.h')
-rw-r--r-- | tools/lib/h5tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h index 376f05a..d08edf7 100644 --- a/tools/lib/h5tools.h +++ b/tools/lib/h5tools.h @@ -553,7 +553,7 @@ H5TOOLS_DLL hid_t h5tools_get_native_type(hid_t type); H5TOOLS_DLL hid_t h5tools_get_little_endian_type(hid_t type); H5TOOLS_DLL hid_t h5tools_get_big_endian_type(hid_t type); -H5TOOLS_DLL htri_t h5tools_detect_vlen_data(hid_t tid); +H5TOOLS_DLL htri_t h5tools_detect_vlen(hid_t tid); H5TOOLS_DLL htri_t h5tools_detect_vlen_str(hid_t tid); H5TOOLS_DLL void h5tools_dump_simple_data(FILE *stream, const h5tool_format_t *info, hid_t container, |