diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-10-09 22:00:15 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-10-09 22:00:15 (GMT) |
commit | c577a5e995bf339f4760e3b8fa30763e6aa4e4ae (patch) | |
tree | 2bf221e48d1114e9ddceb6a8df00ef0a327fa6b7 /src/H5Z.c | |
parent | 66990bc90fe83c0d32e96694918e67928dadb9d0 (diff) | |
download | hdf5-c577a5e995bf339f4760e3b8fa30763e6aa4e4ae.zip hdf5-c577a5e995bf339f4760e3b8fa30763e6aa4e4ae.tar.gz hdf5-c577a5e995bf339f4760e3b8fa30763e6aa4e4ae.tar.bz2 |
HDFFV-10297 update calls to H5Zfilter_avail
Diffstat (limited to 'src/H5Z.c')
-rw-r--r-- | src/H5Z.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -637,10 +637,11 @@ H5Z_filter_avail(H5Z_filter_t id) if(H5Z_table_g[i].id == id) HGOTO_DONE(TRUE) - if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)id))) + if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)id))) { if(H5Z_register(filter_info) < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register loaded filter") HGOTO_DONE(TRUE) + } done: FUNC_LEAVE_NOAPI(ret_value) } /* end H5Z_filter_avail() */ |