diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-05-27 21:32:39 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-05-27 21:32:39 (GMT) |
commit | ca53d64e4607feb63a6147a871b04c42a81fccce (patch) | |
tree | 054033f9497612eeb11acaa16d60ac6ad7d72c6f /src/H5Tconv.c | |
parent | 157623de6a3970f68d725d9dda0974c0ef6f67cd (diff) | |
download | hdf5-ca53d64e4607feb63a6147a871b04c42a81fccce.zip hdf5-ca53d64e4607feb63a6147a871b04c42a81fccce.tar.gz hdf5-ca53d64e4607feb63a6147a871b04c42a81fccce.tar.bz2 |
[svn-r20921] Issue 7579 - The overflowing ENUM values are inconsistent. I took out the error report for 2 H5Tclose calls in H5T_conv_enum because they would clear the error stack.
Tested on jam - simple change.
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r-- | src/H5Tconv.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c index a3fb856..05ce6e1 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -2944,11 +2944,12 @@ H5T_conv_enum(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, /* Close the type IDs. Have to use public function here */ if(conv_overflow) { - if(H5Tclose(src_super_id) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CLOSEERROR, FAIL, "problem closing datatype") - - if(H5Tclose(dst_super_id) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CLOSEERROR, FAIL, "problem closing datatype") + /* Disable the error stack for these two public functions. Otherwise they would + * clear it */ + H5E_BEGIN_TRY { + H5Tclose(src_super_id); + H5Tclose(dst_super_id); + } H5E_END_TRY; HDfree(tmp_buf); } |