summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-10-09 22:00:15 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-10-09 22:00:15 (GMT)
commitc577a5e995bf339f4760e3b8fa30763e6aa4e4ae (patch)
tree2bf221e48d1114e9ddceb6a8df00ef0a327fa6b7 /src/H5Z.c
parent66990bc90fe83c0d32e96694918e67928dadb9d0 (diff)
downloadhdf5-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index 8dbbdb0..1d023b5 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -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() */