diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-11 20:06:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-11 20:06:02 (GMT) |
commit | be2d93daff1f111e15c64bf56b53cd2e0b7c20fe (patch) | |
tree | 000c4e6e8b5e8ee1bd8d237ca03b4516194e1acf /src/H5Tconv.c | |
parent | a44b5b4725b3666eb69276b45712b22aef257fb9 (diff) | |
download | hdf5-be2d93daff1f111e15c64bf56b53cd2e0b7c20fe.zip hdf5-be2d93daff1f111e15c64bf56b53cd2e0b7c20fe.tar.gz hdf5-be2d93daff1f111e15c64bf56b53cd2e0b7c20fe.tar.bz2 |
[svn-r3110] Purpose:
Bug Fix
Description:
Compound datatypes weren't reading background data properly when used
with array or vlen fields.
Solution:
Changed to always read background information from file in those situations.
Platforms tested:
FreeBSD 4.2 (hawkwind)
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 90fe6e8..7ffbc40 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -805,7 +805,7 @@ H5T_conv_need_bkg (H5T_t *src, H5T_t *dst, H5T_cdata_t *cdata) assert(cdata); if (H5T_detect_class(src,H5T_COMPOUND)==TRUE || H5T_detect_class(dst,H5T_COMPOUND)==TRUE) - cdata->need_bkg = H5T_BKG_TEMP; + cdata->need_bkg = H5T_BKG_YES; FUNC_LEAVE (SUCCEED); } |