summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-06-17 16:53:26 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-06-17 16:53:26 (GMT)
commitec6ff32ec720c6073dca3139e4146e66aba7b60d (patch)
tree8fcea1fe0e0539076e862d71e31b9e2fe260d303 /src/H5T.c
parent65370b8417550b503ce1df7727edcac6f2657aba (diff)
downloadhdf5-ec6ff32ec720c6073dca3139e4146e66aba7b60d.zip
hdf5-ec6ff32ec720c6073dca3139e4146e66aba7b60d.tar.gz
hdf5-ec6ff32ec720c6073dca3139e4146e66aba7b60d.tar.bz2
[svn-r8699] Purpose: Bug fix and new test.
Description: A user reported a bug on Windows when writing data of array data type of compound type with variable-length type. I didn't see any problem on Unix. But Purify revealed some memory errors and leaks. Solution: Fixed memory leaks and added new test for it. Platforms tested: h5committest.
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5T.c b/src/H5T.c
index a406f6c..57dd971 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -2471,7 +2471,7 @@ H5Tconvert(hid_t src_id, hid_t dst_id, size_t nelmts, void *buf,
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tconvert, FAIL);
- H5TRACE6("e","iihxxi",src_id,dst_id,nelmts,buf,background,dxpl_id);
+ H5TRACE6("e","iizxxi",src_id,dst_id,nelmts,buf,background,dxpl_id);
/* Check args */
if (NULL==(src=H5I_object_verify(src_id,H5I_DATATYPE)) ||