From 421dfab94c830224e04955e7fabe9d65a6e6e35a Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 10 Oct 2003 09:56:03 -0500 Subject: [svn-r7592] Purpose: Bug fix Description: Correct the size of the buffer needed for the destination value to use the actual destination type size. Platforms tested: FreeBSD 4.9 (sleipnir) too minor to require h5committest --- src/H5Tconv.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/H5Tconv.c b/src/H5Tconv.c index 0580c2d..e34fac6 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -2127,7 +2127,6 @@ H5T_conv_vlen(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, hsize_t nelmts, void *tmp_buf=NULL; /*temporary background buffer */ size_t tmp_buf_size=0; /*size of temporary bkg buffer */ void *dbuf=NULL; /*temp destination buffer */ - size_t dbuf_size=0; /*size of destination buffer */ int direction; /*direction of traversal */ int nested=0; /*flag of nested VL case */ hsize_t elmtno; /*element number counter */ @@ -2207,8 +2206,7 @@ H5T_conv_vlen(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, hsize_t nelmts, bkg_delta = direction * (bkg_stride ? bkg_stride : dst->size); /* Dynamically allocate the destination buffer */ - dbuf_size=MAX(sizeof(hvl_t),sizeof(char *)); - if ((dbuf=H5FL_BLK_MALLOC(vlen_seq,dbuf_size))==NULL) + if ((dbuf=H5FL_BLK_MALLOC(vlen_seq,dst->size))==NULL) HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for type conversion"); /* -- cgit v0.12