mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-11 16:01:00 +08:00
[svn-r13942] Description:
Minor code & comment cleanups Tested on: Mac OS X/32 10.4.10 (amazon) Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
This commit is contained in:
parent
4040ae4232
commit
18d75c9985
@ -110,9 +110,8 @@ H5D_compact_fill(H5D_t *dset, hid_t dxpl_id)
|
||||
|
||||
done:
|
||||
/* Release the fill buffer info, if it's been initialized */
|
||||
if(fb_info_init)
|
||||
if(H5D_fill_term(&fb_info) < 0)
|
||||
HDONE_ERROR(H5E_DATASET, H5E_CANTFREE, FAIL, "Can't release fill buffer info")
|
||||
if(fb_info_init && H5D_fill_term(&fb_info) < 0)
|
||||
HDONE_ERROR(H5E_DATASET, H5E_CANTFREE, FAIL, "Can't release fill buffer info")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5D_compact_fill() */
|
||||
|
@ -259,9 +259,8 @@ H5D_contig_fill(H5D_t *dset, hid_t dxpl_id)
|
||||
|
||||
done:
|
||||
/* Release the fill buffer info, if it's been initialized */
|
||||
if(fb_info_init)
|
||||
if(H5D_fill_term(&fb_info) < 0)
|
||||
HDONE_ERROR(H5E_DATASET, H5E_CANTFREE, FAIL, "Can't release fill buffer info")
|
||||
if(fb_info_init && H5D_fill_term(&fb_info) < 0)
|
||||
HDONE_ERROR(H5E_DATASET, H5E_CANTFREE, FAIL, "Can't release fill buffer info")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5D_contig_fill() */
|
||||
|
@ -158,8 +158,7 @@ done:
|
||||
Use the selection in the dataspace to fill elements in a memory buffer.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
If "fill" parameter is NULL, use all zeros as fill value. If "fill_type"
|
||||
parameter is NULL, use "buf_type" for the fill value datatype.
|
||||
If "fill" parameter is NULL, use all zeros as fill value.
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
Raymond Lu - 20 March 2007
|
||||
|
Loading…
Reference in New Issue
Block a user