diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2016-03-01 16:28:33 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2016-03-01 16:28:33 (GMT) |
commit | c9c8ec5f7c64c3cdb746c4d15084a7f524ea2998 (patch) | |
tree | ae6f4351546f5919f3e528f606acc263d4a310ac /src | |
parent | 281a4901f6c8cf04f53f2ddaac96fe8da1fe8345 (diff) | |
download | hdf5-c9c8ec5f7c64c3cdb746c4d15084a7f524ea2998.zip hdf5-c9c8ec5f7c64c3cdb746c4d15084a7f524ea2998.tar.gz hdf5-c9c8ec5f7c64c3cdb746c4d15084a7f524ea2998.tar.bz2 |
[svn-r29245] use HDONE_ERROR instead of HGOTO after done.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 3a022c3..ae42702 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -548,7 +548,7 @@ done: #ifdef H5_DEBUG_BUILD /* release the metadata dxpl that was copied in the init function */ if(H5I_dec_ref(io_info.md_dxpl_id) < 0) - HGOTO_ERROR(H5E_DATASET, H5E_CANTDEC, FAIL, "can't close metadata dxpl") + HDONE_ERROR(H5E_DATASET, H5E_CANTDEC, FAIL, "can't close metadata dxpl") #endif /* H5_DEBUG_BUILD */ #ifdef H5_HAVE_PARALLEL /* Shut down io_info struct */ @@ -808,7 +808,7 @@ done: #ifdef H5_DEBUG_BUILD /* release the metadata dxpl that was copied in the init function */ if(H5I_dec_ref(io_info.md_dxpl_id) < 0) - HGOTO_ERROR(H5E_DATASET, H5E_CANTDEC, FAIL, "can't close metadata dxpl") + HDONE_ERROR(H5E_DATASET, H5E_CANTDEC, FAIL, "can't close metadata dxpl") #endif /* H5_DEBUG_BUILD */ #ifdef H5_HAVE_PARALLEL /* Shut down io_info struct */ |