diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-14 00:35:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-14 00:35:07 (GMT) |
commit | 8653f01910c1c69f7f7b45ce31f937c07f041187 (patch) | |
tree | 68397edf6ad5066eed851bba1a2f6c98df054363 /src/H5P.c | |
parent | e974009fd6aabf9bb2c60adfeb52855e2138afbb (diff) | |
download | hdf5-8653f01910c1c69f7f7b45ce31f937c07f041187.zip hdf5-8653f01910c1c69f7f7b45ce31f937c07f041187.tar.gz hdf5-8653f01910c1c69f7f7b45ce31f937c07f041187.tar.bz2 |
[svn-r3133] Purpose:
Bug fix
Description:
Set the background buffer type to different values for compound vs. vlen
& array datatypes.
Platforms tested:
Cray J90 (killeen)
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7039,6 +7039,8 @@ static herr_t H5P_close_list(void *_plist) /* Destroy property list object */ H5MM_xfree(plist); + ret_value=SUCCEED; /* return value */ + done: FUNC_LEAVE (ret_value); } /* H5P_close_list() */ @@ -7083,7 +7085,7 @@ herr_t H5Pclose_list(hid_t plist_id) } /* end if */ /* Close the property list */ - if (H5P_close_list(plist) < 0) + if ((ret_value=H5P_close_list(plist)) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTFREE, FAIL, "can't close"); done: |