mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r22575] Issue 8068 - A user reported some random data in the padding of fill value. The problem happened in H5P_get_fill_value. I believe it's because the background buffer wasn't big enough. So I corrected it in this checkin.
Tested on jam and koala - simple change.
This commit is contained in:
parent
c7513e1776
commit
feb79ce8ea
@ -1563,8 +1563,8 @@ H5P_get_fill_value(H5P_genplist_t *plist, const H5T_t *type, void *value/*out*/,
|
||||
else {
|
||||
if(NULL == (buf = H5MM_malloc(H5T_get_size(fill.type))))
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTALLOC, FAIL, "memory allocation failed for type conversion")
|
||||
if(H5T_path_bkg(tpath))
|
||||
bkg = value;
|
||||
if(H5T_path_bkg(tpath) && NULL == (bkg = H5MM_malloc(H5T_get_size(fill.type))))
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTALLOC, FAIL, "memory allocation failed for type conversion")
|
||||
} /* end else */
|
||||
HDmemcpy(buf, fill.buf, H5T_get_size(fill.type));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user