diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-18 16:18:42 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-18 16:18:42 (GMT) |
commit | 5fcc0b141bc5d174892450f2a69b75d5baa2dd67 (patch) | |
tree | 7f1bfee525e6a97cde67346e24fea3000dc71858 /src/H5Tconv.c | |
parent | e96db28f8b7f0e6b0f8a5041128aaa8ffbdc49b0 (diff) | |
download | hdf5-5fcc0b141bc5d174892450f2a69b75d5baa2dd67.zip hdf5-5fcc0b141bc5d174892450f2a69b75d5baa2dd67.tar.gz hdf5-5fcc0b141bc5d174892450f2a69b75d5baa2dd67.tar.bz2 |
[svn-r8705] Purpose: Bug fix and new test.
Description: This is an enhancement after a user reported data writing failure
for array datatype of compound type with variable-length type in the v1.6 branch.
Solution: Added new test and ran with Purify. Fixed memory errors and leaks in
H5Tconv.c.
Platforms tested: h5committest
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r-- | src/H5Tconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c index 1c76a16..5b36f97 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -2829,7 +2829,7 @@ H5T_conv_array(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, if(tpath->cdata.need_bkg) { /* Allocate background buffer */ bkg_buf_size=src->u.array.nelem*MAX(src->size,dst->size); - if ((bkg_buf=H5FL_BLK_MALLOC(array_seq,bkg_buf_size))==NULL) + if ((bkg_buf=H5FL_BLK_CALLOC(array_seq,bkg_buf_size))==NULL) HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for type conversion"); } /* end if */ |